X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FObject-Remote.git;a=blobdiff_plain;f=lib%2FObject%2FRemote%2FHandle.pm;h=782ddf678819721ac07f89b90e2167719f84bbd6;hp=de25a6ce6ead2be8be8affff3a022dfe56535fcc;hb=bef36e73e4257b2ba8e59eb55661ffc51d8a620a;hpb=8f43bcd9596b298f867bc3daf5b207d774973af7 diff --git a/lib/Object/Remote/Handle.pm b/lib/Object/Remote/Handle.pm index de25a6c..782ddf6 100644 --- a/lib/Object/Remote/Handle.pm +++ b/lib/Object/Remote/Handle.pm @@ -55,12 +55,12 @@ sub call { my ($self, $method, @args) = @_; my $w = wantarray; my $id = $self->id; - + $method = "start::${method}" if (caller(0)||'') eq 'start'; log_trace { "call('$method') has been invoked on remote handle '$id'; creating future" }; future { - log_debug { "Invoking send on connection for handle '$id' method $method" }; + log_debug { "Invoking send on connection for handle '$id' method '$method'" }; $self->connection->send(call => $id, $w, $method, @args) }; }