summaryrefslogtreecommitdiff
path: root/src/op.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-11-02 01:21:35 -0500
committerJohn Wiegley <johnw@newartisans.com>2009-11-02 01:21:35 -0500
commitaef7510f199932d4c11cbabd2467de53a32f275e (patch)
tree00dad02caf6a0166169f6055402edf5ba6805aa6 /src/op.h
parentc0fe2b530003adee5a8cc7423e9c1c4022cf314a (diff)
downloadfork-ledger-aef7510f199932d4c11cbabd2467de53a32f275e.tar.gz
fork-ledger-aef7510f199932d4c11cbabd2467de53a32f275e.tar.bz2
fork-ledger-aef7510f199932d4c11cbabd2467de53a32f275e.zip
Renamed two debug categories
Diffstat (limited to 'src/op.h')
-rw-r--r--src/op.h4
1 files changed, 2 insertions, 2 deletions
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)