From: martin f. krafft Date: Mon, 20 Sep 2021 03:01:19 +0000 (+0200) Subject: Do not let debug output produce activity X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=4ca244d6676287525b88a7e29cdb9c241ea1a4a7;p=irssi-scripts.irssi.org.git Do not let debug output produce activity Signed-off-by: martin f. krafft --- diff --git a/scripts/chankeys.pl b/scripts/chankeys.pl index 412d623..7e48e09 100644 --- a/scripts/chankeys.pl +++ b/scripts/chankeys.pl @@ -132,7 +132,7 @@ sub debug { return unless $debug; my ($msg, $inwin) = @_; $msg = $msg // ""; - say("DEBUG: ".$msg, MSGLEVEL_CRAP, $inwin); + say("DEBUG: ".$msg, MSGLEVEL_CRAP + MSGLEVEL_NO_ACT, $inwin); } sub info {