summaryrefslogtreecommitdiff
path: root/src/irmd/reg
diff options
context:
space:
mode:
Diffstat (limited to 'src/irmd/reg')
-rw-r--r--src/irmd/reg/pool.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/irmd/reg/pool.c b/src/irmd/reg/pool.c
index fd983db8..4b1486bb 100644
--- a/src/irmd/reg/pool.c
+++ b/src/irmd/reg/pool.c
@@ -84,8 +84,6 @@ void reg_pool_ref(struct reg_pool * pool)
assert(pool->refcount > 0);
pool->refcount++;
-
- log_dbg("PUP uid %d refcount++ -> %zu.", pool->uid, pool->refcount);
}
int reg_pool_unref(struct reg_pool * pool)
@@ -95,7 +93,5 @@ int reg_pool_unref(struct reg_pool * pool)
pool->refcount--;
- log_dbg("PUP uid %d refcount-- -> %zu.", pool->uid, pool->refcount);
-
return pool->refcount == 0 ? 0 : 1;
}