summaryrefslogtreecommitdiff
path: root/src/xpath.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2007-04-30 08:24:37 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 03:38:34 -0400
commit3ba6c2572dfc58bcd963cbc8cac1cce2f5b01dba (patch)
treedc04c7feaeab4ce255f4f74d47325f4efb9f8314 /src/xpath.cc
parent83fc097062c3380091556c6a4b703d28821d5464 (diff)
downloadledger-3ba6c2572dfc58bcd963cbc8cac1cce2f5b01dba.tar.gz
ledger-3ba6c2572dfc58bcd963cbc8cac1cce2f5b01dba.tar.bz2
ledger-3ba6c2572dfc58bcd963cbc8cac1cce2f5b01dba.zip
Changed some of the logging macro names.
Diffstat (limited to 'src/xpath.cc')
-rw-r--r--src/xpath.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xpath.cc b/src/xpath.cc
index 6eb30d48..3facab60 100644
--- a/src/xpath.cc
+++ b/src/xpath.cc
@@ -475,7 +475,7 @@ xpath_t::op_t * xpath_t::wrap_mask(const string& pattern)
void xpath_t::scope_t::define(const string& name, op_t * def)
{
- DEBUG_("ledger.xpath.syms", "Defining '" << name << "' = " << def);
+ DEBUG("ledger.xpath.syms", "Defining '" << name << "' = " << def);
std::pair<symbol_map::iterator, bool> result
= symbols.insert(symbol_pair(name, def));
@@ -548,7 +548,7 @@ xpath_t::op_t::~op_t()
{
TRACE_DTOR(xpath_t::op_t);
- DEBUG_("ledger.xpath.memory", "Destroying " << this);
+ DEBUG("ledger.xpath.memory", "Destroying " << this);
assert(refc == 0);
switch (kind) {