diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-15 15:42:12 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-15 15:42:12 -0400 |
commit | 94aa8e5a9121a2bb90ad9bb794e274f8011a2da5 (patch) | |
tree | 0ea4b62d7a361f58c11112977cd2030c017b9f64 /src/op.cc | |
parent | 03219d910f527b6a4c5f563aab6152145a51e0fa (diff) | |
download | fork-ledger-94aa8e5a9121a2bb90ad9bb794e274f8011a2da5.tar.gz fork-ledger-94aa8e5a9121a2bb90ad9bb794e274f8011a2da5.tar.bz2 fork-ledger-94aa8e5a9121a2bb90ad9bb794e274f8011a2da5.zip |
Changed debug category op.calc to expr.calc
Diffstat (limited to 'src/op.cc')
-rw-r--r-- | src/op.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -97,7 +97,7 @@ value_t expr_t::op_t::calc(scope_t& scope, ptr_op_t * locus) value_t result; - DEBUG("op.calc", "calculating '" << op_context(this) << "'"); + DEBUG("expr.calc", "calculating '" << op_context(this) << "'"); switch (kind) { case VALUE: @@ -295,7 +295,7 @@ value_t expr_t::op_t::calc(scope_t& scope, ptr_op_t * locus) break; } - DEBUG("op.calc", "result is '" << result << "'"); + DEBUG("expr.calc", "result is '" << result << "'"); return result; |