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:
|
||||
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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue