diff --git a/PBot/Quotegrabs.pm b/PBot/Quotegrabs.pm index 0c3490ee..07ba7f77 100644 --- a/PBot/Quotegrabs.pm +++ b/PBot/Quotegrabs.pm @@ -387,10 +387,6 @@ sub show_random_quotegrab { $channel_search = undef if defined $channel_search and $channel_search !~ /^#/; - print "nick: [" . (defined $nick_search ? $nick_search : "undef") . "]\n"; - print "channel: [" . (defined $channel_search ? $channel_search : "undef") . "]\n"; - print "text: [" . (defined $text_search ? $text_search : "undef") . "]\n"; - my $quotegrab = $self->{quotegrabs_db}->get_random_quotegrab($nick_search, $channel_search, $text_search); if(not defined $quotegrab) { diff --git a/PBot/Quotegrabs_SQLite.pm b/PBot/Quotegrabs_SQLite.pm index 0f7944ef..9522bee4 100644 --- a/PBot/Quotegrabs_SQLite.pm +++ b/PBot/Quotegrabs_SQLite.pm @@ -134,7 +134,6 @@ sub get_random_quotegrab { $sql .= 'ORDER BY RANDOM() LIMIT 1'; - print "sql: [$sql]\n"; my $sth = $self->{dbh}->prepare($sql); $sth->execute(@params); return $sth->fetchrow_hashref(); diff --git a/PBot/VERSION.pm b/PBot/VERSION.pm index d58c9fcc..868f073b 100644 --- a/PBot/VERSION.pm +++ b/PBot/VERSION.pm @@ -13,7 +13,7 @@ use warnings; # These are set automatically by the build/commit script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 566, + BUILD_REVISION => 567, BUILD_DATE => "2014-05-05", };