From: Ralf Ertzinger Date: Tue, 30 Apr 2013 14:32:40 +0000 (+0200) Subject: videosite-irssi: remove debug messages X-Git-Url: https://git.camperquake.de/gitweb.cgi?p=videosite.git;a=commitdiff_plain;h=da09b86cc41cbe6ceb49879853523925219b663b videosite-irssi: remove debug messages --- 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'}); }