Index: /trunk/src/recompiler_new/VBoxRecompiler.c
===================================================================
--- /trunk/src/recompiler_new/VBoxRecompiler.c	(revision 13731)
+++ /trunk/src/recompiler_new/VBoxRecompiler.c	(revision 13732)
@@ -3245,5 +3245,7 @@
     PGMPhysWrite(cpu_single_env->pVM, DstGCPhys, pvSrc, cb);
     STAM_PROFILE_ADV_STOP(&gStatMemWrite, a);
+#ifdef DEBUG_PHYS
     LogRel(("write(%d): %p\n", cb, DstGCPhys));
+#endif
 }
 
@@ -3261,5 +3263,7 @@
     PGMR3PhysWriteU8(cpu_single_env->pVM, DstGCPhys, val);
     STAM_PROFILE_ADV_STOP(&gStatMemWrite, a);
+#ifdef DEBUG_PHYS
     LogRel(("writeu8: %x -> %p\n", val, DstGCPhys));
+#endif
 }
 
@@ -3277,5 +3281,7 @@
     PGMR3PhysWriteU16(cpu_single_env->pVM, DstGCPhys, val);
     STAM_PROFILE_ADV_STOP(&gStatMemWrite, a);
+#ifdef DEBUG_PHYS
     LogRel(("writeu16: %x -> %p\n", val, DstGCPhys));
+#endif
 }
 
@@ -3293,5 +3299,7 @@
     PGMR3PhysWriteU32(cpu_single_env->pVM, DstGCPhys, val);
     STAM_PROFILE_ADV_STOP(&gStatMemWrite, a);
+#ifdef DEBUG_PHYS
     LogRel(("writeu32: %x -> %p\n", val, DstGCPhys));
+#endif
 }
 
