Renamed two debug categories
This commit is contained in:
parent
c0fe2b5300
commit
aef7510f19
1 changed files with 2 additions and 2 deletions
4
src/op.h
4
src/op.h
|
|
@ -232,13 +232,13 @@ public:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void acquire() const {
|
void acquire() const {
|
||||||
DEBUG("ledger.xpath.memory",
|
DEBUG("op.memory",
|
||||||
"Acquiring " << this << ", refc now " << refc + 1);
|
"Acquiring " << this << ", refc now " << refc + 1);
|
||||||
assert(refc >= 0);
|
assert(refc >= 0);
|
||||||
refc++;
|
refc++;
|
||||||
}
|
}
|
||||||
void release() const {
|
void release() const {
|
||||||
DEBUG("ledger.xpath.memory",
|
DEBUG("op.memory",
|
||||||
"Releasing " << this << ", refc now " << refc - 1);
|
"Releasing " << this << ", refc now " << refc - 1);
|
||||||
assert(refc > 0);
|
assert(refc > 0);
|
||||||
if (--refc == 0)
|
if (--refc == 0)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue