From d97fab603697b71f9b0a52700d2fafc8e6a85410 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Fri, 18 Jan 2008 18:49:30 -0700 Subject: [PATCH] comment out some debugging log messages --- src/machine.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/machine.cpp b/src/machine.cpp index f47509a420..4b6d12d8ae 100644 --- a/src/machine.cpp +++ b/src/machine.cpp @@ -2658,16 +2658,16 @@ findInTable(Thread* t, object table, object name, object spec, } } - fprintf(stderr, "%s %s not in\n", - &byteArrayBody(t, name, 0), - &byteArrayBody(t, spec, 0)); +// fprintf(stderr, "%s %s not in\n", +// &byteArrayBody(t, name, 0), +// &byteArrayBody(t, spec, 0)); - for (unsigned i = 0; i < arrayLength(t, table); ++i) { - object o = arrayBody(t, table, i); - fprintf(stderr, "\t%s %s\n", - &byteArrayBody(t, getName(t, o), 0), - &byteArrayBody(t, getSpec(t, o), 0)); - } +// for (unsigned i = 0; i < arrayLength(t, table); ++i) { +// object o = arrayBody(t, table, i); +// fprintf(stderr, "\t%s %s\n", +// &byteArrayBody(t, getName(t, o), 0), +// &byteArrayBody(t, getSpec(t, o), 0)); +// } } return 0;