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 (! compiled) {
|
||||
if (SHOW_DEBUG("expr.calc")) {
|
||||
DEBUG("expr.calc", "Before compilation:");
|
||||
if (SHOW_DEBUG("expr.compile")) {
|
||||
DEBUG("expr.compile", "Before compilation:");
|
||||
dump(*_log_stream);
|
||||
}
|
||||
|
||||
compile(scope);
|
||||
|
||||
if (SHOW_DEBUG("expr.calc")) {
|
||||
DEBUG("expr.calc", "After compilation:");
|
||||
if (SHOW_DEBUG("expr.compile")) {
|
||||
DEBUG("expr.compile", "After compilation:");
|
||||
dump(*_log_stream);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue