summaryrefslogtreecommitdiff
path: root/src/exprbase.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-03-07 10:33:06 -0600
committerJohn Wiegley <johnw@newartisans.com>2012-03-07 10:33:06 -0600
commit755495ee8a019e458f43ea03449e7cd21d3f277f (patch)
treeb43899e71cc98b28f89391f402552d8dfbc3fdcc /src/exprbase.h
parentdd6bcf347e2389cc6dce7cc161c8d2188160e582 (diff)
downloadfork-ledger-755495ee8a019e458f43ea03449e7cd21d3f277f.tar.gz
fork-ledger-755495ee8a019e458f43ea03449e7cd21d3f277f.tar.bz2
fork-ledger-755495ee8a019e458f43ea03449e7cd21d3f277f.zip
Changed scope of two DEBUG statements
Diffstat (limited to 'src/exprbase.h')
-rw-r--r--src/exprbase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exprbase.h b/src/exprbase.h
index 56900dbb..bea25320 100644
--- a/src/exprbase.h
+++ b/src/exprbase.h
@@ -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);
}