summaryrefslogtreecommitdiff
path: root/src/irmd/reg
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2026-02-14 16:26:15 +0100
committerSander Vrijders <sander@ouroboros.rocks>2026-02-18 07:53:16 +0100
commit85cc8d28d263a8b8ff04d90622311f5d68e26e6f (patch)
tree0352865fe53e6748dd702f0ed239db0c3589a38a /src/irmd/reg
parentd85326a119c34789055c388fcd18bb0161fbfd21 (diff)
downloadouroboros-85cc8d28d263a8b8ff04d90622311f5d68e26e6f.tar.gz
ouroboros-85cc8d28d263a8b8ff04d90622311f5d68e26e6f.zip
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 <dimitri@ouroboros.rocks> Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
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;
}