X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FObject%2FRemote%2FHandle.pm;h=1a20eba76179d3c996747a8ff77caedda7bed00d;hb=b51a8453354ea19e42ea2a09234b1c9d1eb8ca67;hp=40584b5c80a42e9e25c13b2d56d77e376ed9f417;hpb=90a3a7f22af359fe9a659c9e8fcf5d332af72ebb;p=scpubgit%2FObject-Remote.git diff --git a/lib/Object/Remote/Handle.pm b/lib/Object/Remote/Handle.pm index 40584b5..1a20eba 100644 --- a/lib/Object/Remote/Handle.pm +++ b/lib/Object/Remote/Handle.pm @@ -32,7 +32,7 @@ sub proxy { sub BUILD { my ($self, $args) = @_; - log_debug { "constructing remote handle" }; + log_trace { "constructing remote handle" }; if ($self->id) { log_trace { "disarming free for this handle" }; $self->disarm_free; @@ -56,7 +56,7 @@ sub BUILD { sub call { my ($self, $method, @args) = @_; my $w = wantarray; - log_debug { my $def = defined $w ? 1 : 0; "call() has been invoked on a remote handle; wantarray: '$def'" }; + log_trace { my $def = defined $w ? 1 : 0; "call() has been invoked on a remote handle; wantarray: '$def'" }; $method = "start::${method}" if (caller(0)||'') eq 'start'; future { $self->connection->send(call => $self->id, $w, $method, @args)