From da09b86cc41cbe6ceb49879853523925219b663b Mon Sep 17 00:00:00 2001 From: Ralf Ertzinger Date: Tue, 30 Apr 2013 16:32:40 +0200 Subject: [PATCH] videosite-irssi: remove debug messages --- videosite-irssi.pl | 2 -- 1 file changed, 2 deletions(-) diff --git a/videosite-irssi.pl b/videosite-irssi.pl index dc6196b..1a09e66 100644 --- a/videosite-irssi.pl +++ b/videosite-irssi.pl @@ -785,7 +785,6 @@ sub config_init { # Try to find old config files and load them. if (-r $conffile) { - write_debug("Attempting JSON config load from %s", $conffile); eval { local $/; open(CONF, '<', $conffile); @@ -793,7 +792,6 @@ sub config_init { close(CONF); }; } elsif (-r $xmlconffile) { - write_debug("Attempting XML config load from %s", $xmlconffile); $conf = XML::Simple::XMLin($xmlconffile, ForceArray => ['config', 'option', 'connectorlist'], KeepRoot => 1, KeyAttr => {'connector' => '+name', 'config' => 'module', 'option' => 'key'}); } -- 1.8.3.1