Author: Armin Rigo <ar...@tunes.org>
Branch: reverse-debugger
Changeset: r85470:c4e9f3b2065e
Date: 2016-06-30 14:32 +0200
http://bitbucket.org/pypy/pypy/changeset/c4e9f3b2065e/

Log:    Remove debugging output

diff --git a/rpython/translator/revdb/src-revdb/revdb.c 
b/rpython/translator/revdb/src-revdb/revdb.c
--- a/rpython/translator/revdb/src-revdb/revdb.c
+++ b/rpython/translator/revdb/src-revdb/revdb.c
@@ -1229,8 +1229,8 @@
 RPY_EXTERN
 int rpy_reverse_db_fq_register(void *obj)
 {
-    fprintf(stderr, "FINALIZER_TREE: %lld -> %p\n",
-              ((struct pypy_header0 *)obj)->h_uid, obj);
+    /*fprintf(stderr, "FINALIZER_TREE: %lld -> %p\n",
+              ((struct pypy_header0 *)obj)->h_uid, obj);*/
     if (!RPY_RDB_REPLAY) {
         return 0;     /* recording */
     }
@@ -1247,7 +1247,7 @@
     int64_t uid;
     RPY_REVDB_EMIT(uid = result ? ((struct pypy_header0 *)result)->h_uid : -1;,
                    int64_t _e, uid);
-    fprintf(stderr, "next_dead: object %lld\n", uid);
+    /*fprintf(stderr, "next_dead: object %lld\n", uid);*/
     if (RPY_RDB_REPLAY) {
         if (uid == -1) {
             result = NULL;
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to