From 288758fd2ae991b6269500030af9ed522d66084e Mon Sep 17 00:00:00 2001 From: Tom Feist Date: Thu, 21 Apr 2011 23:41:57 +0100 Subject: notifyquit: removed debug prints. --- quit-notify/notifyquit.pl | 5 ----- 1 file changed, 5 deletions(-) (limited to 'quit-notify') diff --git a/quit-notify/notifyquit.pl b/quit-notify/notifyquit.pl index a8d7f3f..a37e258 100644 --- a/quit-notify/notifyquit.pl +++ b/quit-notify/notifyquit.pl @@ -171,13 +171,10 @@ sub extract_nick { sub check_nick_exemptions { my ($nick) = @_; foreach my $except (@match_exceptions) { - print "Testing nick $nick against $except"; if ($nick =~ $except) { - print "FAiled match $except"; return 0; # fail } } - print "match ok"; return 1; } @@ -285,7 +282,6 @@ sub sig_setup_changed { foreach my $except (@except_list) { - print "Exception regex str: $except"; $except =~ s|^/||; $except =~ s|/$||; @@ -300,7 +296,6 @@ sub sig_setup_changed { if ($@ or not defined $regex) { print "Regex failed to parse: \"$except\": $@"; } else { - print "Adding match exception: $regex"; push @match_exceptions, $regex; } } -- cgit v1.2.3