comment out some debugging log messages

This commit is contained in:
Joel Dice 2008-01-18 18:49:30 -07:00
parent c894543806
commit d97fab6036

View File

@ -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;