From 3ba6c2572dfc58bcd963cbc8cac1cce2f5b01dba Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 30 Apr 2007 08:24:37 +0000 Subject: Changed some of the logging macro names. --- src/xpath.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/xpath.h') diff --git a/src/xpath.h b/src/xpath.h index 13966ffc..7056c74e 100644 --- a/src/xpath.h +++ b/src/xpath.h @@ -424,21 +424,21 @@ public: } void release() const { - DEBUG_("ledger.xpath.memory", + DEBUG("ledger.xpath.memory", "Releasing " << this << ", refc now " << refc - 1); assert(refc > 0); if (--refc == 0) delete this; } op_t * acquire() { - DEBUG_("ledger.xpath.memory", + DEBUG("ledger.xpath.memory", "Acquiring " << this << ", refc now " << refc + 1); assert(refc >= 0); refc++; return this; } const op_t * acquire() const { - DEBUG_("ledger.xpath.memory", + DEBUG("ledger.xpath.memory", "Acquiring " << this << ", refc now " << refc + 1); assert(refc >= 0); refc++; -- cgit v1.2.3