Skip to content

Commit

Permalink
For [GH #161] - minor debugging output change
Browse files Browse the repository at this point in the history
  • Loading branch information
hkoba committed Aug 12, 2019
1 parent 13044b0 commit a5149a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lite/LanguageServer/Generic.pm
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ sub call_method {
(my MY $self, my Request $request) = @_;
my $method = $self->translate_method_name($request->{method});
if (my $sub = $self->can($method)) {
print STDERR "# call_method '$method': ", $self->cli_encode_json($request), "\n";
my $params = $request->{params};
print STDERR "# call_method: $method '", $self->cli_encode_json($params), "'\n";
$sub->($self, $params);
} else {
print STDERR "# Not implemented: ", $self->cli_encode_json($request), "\n";
Expand Down

0 comments on commit a5149a1

Please sign in to comment.