diff --git a/webtools/PLIF/PLIF/Service.pm b/webtools/PLIF/PLIF/Service.pm index 0060cce88cf1..e57be29b80e1 100644 --- a/webtools/PLIF/PLIF/Service.pm +++ b/webtools/PLIF/PLIF/Service.pm @@ -48,7 +48,7 @@ sub dispatch { my $method = $self->can($name); local $" = '\', \''; if ($method) { - $self->dump(10, "Attempting to dispatch method: $self->$name('$app', '@arguments')"); + $self->dump(10, "Attempting to dispatch method: $self->$name('$app', ...)"); # can't mention @arguments in string since it might contain undefs &$method($self, $app, @arguments); return 1; } else {