disable debug logging

This commit is contained in:
Joel Dice 2009-07-27 18:09:12 -06:00
parent 0447d9bed3
commit ad66ae2691
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ vmCall();
namespace {
const bool DebugCompile = true;
const bool DebugCompile = false;
const bool DebugNatives = false;
const bool DebugCallTable = false;
const bool DebugMethodTree = false;

View File

@ -55,7 +55,7 @@ run(void* r)
return 0;
}
const bool Verbose = true;
const bool Verbose = false;
const unsigned Waiting = 1 << 0;
const unsigned Notified = 1 << 1;