INET connector
[scpubgit/Object-Remote.git] / lib / Object / Remote / Handle.pm
index de25a6c..782ddf6 100644 (file)
@@ -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)
   };
 }