Changed scope of two DEBUG statements

This commit is contained in:
John Wiegley 2012-03-07 10:33:06 -06:00
parent dd6bcf347e
commit 755495ee8a

View file

@ -163,7 +163,7 @@ public:
}
#endif // defined(DEBUG_ON)
DEBUG("expr.calc.when", "Compiling: " << str);
DEBUG("expr.compile", "Compiling: " << str);
compile(scope);
#if defined(DEBUG_ON)
@ -174,7 +174,7 @@ public:
#endif // defined(DEBUG_ON)
}
DEBUG("expr.calc.when", "Calculating: " << str);
DEBUG("expr.calc", "Calculating: " << str);
return real_calc(scope);
}