From 03b2b8d7b9a0a20de51c8e2775815620b77de74f Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sat, 26 Aug 2017 21:37:31 -0700 Subject: [PATCH] Remove left over debug messages --- PBot/FactoidCommands.pm | 3 --- 1 file changed, 3 deletions(-) diff --git a/PBot/FactoidCommands.pm b/PBot/FactoidCommands.pm index 4c8885d6..814800b5 100644 --- a/PBot/FactoidCommands.pm +++ b/PBot/FactoidCommands.pm @@ -151,8 +151,6 @@ sub log_factoid { push @{$undos->{list}}, $self->{pbot}->{factoids}->{factoids}->hash->{$channel}->{$trigger}; $undos->{idx}++; - print "storing undo [$channel][$trigger]\n"; - store $undos, "$path/$trigger.$channel_path.undo"; } @@ -224,7 +222,6 @@ sub factundo { my $channel_path = $channel; $channel_path = 'global' if $channel_path eq '.*'; - print "channel: [$channel][$channel_path]\n"; my $path = $self->{pbot}->{registry}->get_value('general', 'data_dir') . '/factlog'; my $undos = eval { retrieve("$path/$trigger.$channel_path.undo"); };