From aef7510f199932d4c11cbabd2467de53a32f275e Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 2 Nov 2009 01:21:35 -0500 Subject: Renamed two debug categories --- src/op.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/op.h') diff --git a/src/op.h b/src/op.h index 8d474b80..b27384ec 100644 --- a/src/op.h +++ b/src/op.h @@ -232,13 +232,13 @@ public: private: void acquire() const { - DEBUG("ledger.xpath.memory", + DEBUG("op.memory", "Acquiring " << this << ", refc now " << refc + 1); assert(refc >= 0); refc++; } void release() const { - DEBUG("ledger.xpath.memory", + DEBUG("op.memory", "Releasing " << this << ", refc now " << refc - 1); assert(refc > 0); if (--refc == 0) -- cgit v1.2.3