Skip to content

Commit

Permalink
[hotfix][rest] Remove "Impl. error" from log message
Browse files Browse the repository at this point in the history
Original intent was to never reach this code path except on programmer errors, but it has turned into an accepted code path for unhandled exceptions.
  • Loading branch information
zentol committed Mar 14, 2019
1 parent d9803ac commit ada4154
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ private CompletableFuture<Void> handleException(Throwable throwable, ChannelHand
rhe.getHttpResponseStatus(),
responseHeaders);
} else {
log.error("Implementation error: Unhandled exception.", throwable);
log.error("Unhandled exception.", throwable);
String stackTrace = String.format("<Exception on server side:%n%s%nEnd of exception on server side>",
ExceptionUtils.stringifyException(throwable));
return HandlerUtils.sendErrorResponse(
Expand Down

0 comments on commit ada4154

Please sign in to comment.