Changed a debug category to be more accurate
This commit is contained in:
parent
ce8442a30d
commit
6afd2b39cf
1 changed files with 4 additions and 4 deletions
|
|
@ -126,15 +126,15 @@ value_t expr_t::calc(scope_t& scope)
|
||||||
{
|
{
|
||||||
if (ptr.get()) {
|
if (ptr.get()) {
|
||||||
if (! compiled) {
|
if (! compiled) {
|
||||||
if (SHOW_DEBUG("expr.calc")) {
|
if (SHOW_DEBUG("expr.compile")) {
|
||||||
DEBUG("expr.calc", "Before compilation:");
|
DEBUG("expr.compile", "Before compilation:");
|
||||||
dump(*_log_stream);
|
dump(*_log_stream);
|
||||||
}
|
}
|
||||||
|
|
||||||
compile(scope);
|
compile(scope);
|
||||||
|
|
||||||
if (SHOW_DEBUG("expr.calc")) {
|
if (SHOW_DEBUG("expr.compile")) {
|
||||||
DEBUG("expr.calc", "After compilation:");
|
DEBUG("expr.compile", "After compilation:");
|
||||||
dump(*_log_stream);
|
dump(*_log_stream);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue