Author: Maciej Fijalkowski <[email protected]>
Branch: 
Changeset: r45416:330224c355a1
Date: 2011-07-08 13:34 +0200
http://bitbucket.org/pypy/pypy/changeset/330224c355a1/

Log:    Improve logging messages to match exactly the format used in logger

diff --git a/pypy/jit/backend/x86/assembler.py 
b/pypy/jit/backend/x86/assembler.py
--- a/pypy/jit/backend/x86/assembler.py
+++ b/pypy/jit/backend/x86/assembler.py
@@ -417,7 +417,7 @@
         #
         rawstart = self.materialize_loop(looptoken)
         debug_start("jit-backend-addr")
-        debug_print("Loop #%d (%s) has address %x to %x (bootstrap %x)" % (
+        debug_print("Loop %d (%s) has address %x to %x (bootstrap %x)" % (
             looptoken.number, loopname,
             rawstart + self.looppos,
             rawstart + directbootstrappos,
@@ -482,7 +482,7 @@
         #
         rawstart = self.materialize_loop(original_loop_token)
         debug_start("jit-backend-addr")
-        debug_print("Bridge out of guard %d has address %x to %x" %
+        debug_print("Bridge out of Guard %d has address %x to %x" %
                     (descr_number, rawstart, rawstart + codeendpos))
         debug_stop("jit-backend-addr")
         self._patch_stackadjust(rawstart + stackadjustpos,
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to