From: Marius Gavrilescu Date: Sat, 25 Jan 2014 21:03:45 +0000 (+0200) Subject: Finally remove obnoxius Gruntmaster::Data debugging X-Git-Url: http://git.ieval.ro/?p=gruntmaster-page.git;a=commitdiff_plain;h=1e683a56a8dccf4fbe9a94a9b3fc53f7fd02ad54 Finally remove obnoxius Gruntmaster::Data debugging --- diff --git a/lib/Gruntmaster/Data.pm b/lib/Gruntmaster/Data.pm index 5871a9c..77d78c0 100644 --- a/lib/Gruntmaster/Data.pm +++ b/lib/Gruntmaster/Data.pm @@ -18,11 +18,11 @@ sub dynsub{ BEGIN { for my $cmd (qw/multi exec smembers get hget hdel hset sadd srem incr hmset hsetnx publish/) { - dynsub uc $cmd, sub { say "Arguments to \U$cmd: ", join ', ', @_; $redis->$cmd(@_) }; + dynsub uc $cmd, sub { $redis->$cmd(@_) }; } for my $cmd (qw/subscribe wait_for_messages/) { - dynsub uc $cmd, sub { say "Arguments to \U$cmd: ", join ', ', @_; $pubsub->$cmd(@_) }; + dynsub uc $cmd, sub { $pubsub->$cmd(@_) }; } }