X-Git-Url: http://git.rot13.org/?p=perl-Redis.git;a=blobdiff_plain;f=lib%2FRedis.pm;h=7c8bf23cb89b89cf836dac8192cfdbd00f952898;hp=2caa3b782846d2cd60b579020dabde9f9983f373;hb=refs%2Ftags%2F0.0801;hpb=e99389aa9c654dacda29dfe72d070c1f6f9d043c 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; }