From b113247f48f2ed907f03e43193c564bbdafd0202 Mon Sep 17 00:00:00 2001 From: tali Date: Wed, 31 Jan 2024 18:43:15 -0500 Subject: [PATCH] promote new channel / recycle channel msgs to INFO --- lib/server/connection.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/server/connection.ml b/lib/server/connection.ml index b6ae159..7769e0a 100644 --- a/lib/server/connection.ml +++ b/lib/server/connection.ml @@ -457,7 +457,7 @@ let on_msg_join t name = DON'T try to make a new channel *) Error (nosuchchannel name) with Not_found -> - debug (fun m -> m "making new channel %S" name); + info (fun m -> m "making new channel %S" name); Ok (Chan.make name) in match Router.membership chan me with @@ -495,7 +495,7 @@ let leave t mem ~from ~why = Router.part mem; if Chan.is_empty chan then begin - debug (fun m -> m "recycling empty channel %S" (Chan.name chan)); + info (fun m -> m "recycling empty channel %S" (Chan.name chan)); Chan.unregister chan ~router:t.router; end