From 85cc8d28d263a8b8ff04d90622311f5d68e26e6f Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Sat, 14 Feb 2026 16:26:15 +0100 Subject: irmd: Clean up key exchange debug logs This cleans up a few debug logs related to encryption to not show KEM info for non-KEM algorithms. Also removes refcount logs for the PUP. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- src/irmd/reg/pool.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/irmd/reg/pool.c') 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; } -- cgit v1.2.3