videosite-irssi: remove debug messages
authorRalf Ertzinger <ralf@skytale.net>
Tue, 30 Apr 2013 14:32:40 +0000 (16:32 +0200)
committerRalf Ertzinger <ralf@skytale.net>
Tue, 30 Apr 2013 14:32:40 +0000 (16:32 +0200)
videosite-irssi.pl

index dc6196b..1a09e66 100644 (file)
@@ -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'});
     }