diff options
author | John Wiegley <johnw@newartisans.com> | 2012-03-07 10:33:06 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-03-07 10:33:06 -0600 |
commit | 755495ee8a019e458f43ea03449e7cd21d3f277f (patch) | |
tree | b43899e71cc98b28f89391f402552d8dfbc3fdcc /src/exprbase.h | |
parent | dd6bcf347e2389cc6dce7cc161c8d2188160e582 (diff) | |
download | fork-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.h | 4 |
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); } |