Skip to content

Commit

Permalink
refactor: improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Vovchyk committed Sep 25, 2024
1 parent 4e1b870 commit e0cb416
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public JsonError resolveError(Throwable t, Method method, List<JsonNode> argumen
"the method " + method.getName() + " does not exist/is not available",
null);
} else {
logger.error("JsonRPC error when for method {} with arguments {}", method, arguments, t);
logger.error("JsonRPC error when for method {}", method, t);
error = new JsonError(JsonRpcError.INTERNAL_ERROR, "Internal server error", null);
}
return error;
Expand Down

0 comments on commit e0cb416

Please sign in to comment.