X-Git-Url: http://git.rot13.org//?a=blobdiff_plain;f=lib%2FRedis.pm;h=7c8bf23cb89b89cf836dac8192cfdbd00f952898;hb=8a36a2c05814b1b0a6c40ffc595e5c8283c088c2;hp=2caa3b782846d2cd60b579020dabde9f9983f373;hpb=9d787cbf91248981f136b6319b5d5b86e6ec6d7a;p=perl-Redis.git diff --git a/lib/Redis.pm b/lib/Redis.pm index 2caa3b7..7c8bf23 100644 --- a/lib/Redis.pm +++ b/lib/Redis.pm @@ -4,7 +4,7 @@ use warnings; use strict; use IO::Socket::INET; -use Data::Dump qw/dump/; +use Data::Dumper; use Carp qw/confess/; =head1 NAME @@ -75,7 +75,7 @@ sub AUTOLOAD { my $command = $AUTOLOAD; $command =~ s/.*://; - warn "## $command ",dump(@_) if $self->{debug}; + warn "## $command ",Dumper(@_) if $self->{debug}; my $send; @@ -147,7 +147,7 @@ sub __read_bulk { my $v; if ( $len > 0 ) { read($self->{sock}, $v, $len) || die $!; - warn "<< ",dump($v),$/ if $self->{debug}; + warn "<< ",Dumper($v),$/ if $self->{debug}; } my $crlf; read($self->{sock}, $crlf, 2); # skip cr/lf @@ -166,7 +166,7 @@ sub __read_multi_bulk { $list[ $_ ] = $self->__read_bulk( substr(<$sock>,1,-2) ); } - warn "## list = ", dump( @list ) if $self->{debug}; + warn "## list = ", Dumper( @list ) if $self->{debug}; return @list; }