Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ private void processRequest(ChannelHandlerContext context, HttpRequest originalR
logger.debug("Error occurred handling request, invoking application error handler");
return errorResponse.onErrorResumeNext(Observable.just(null));
}
else {
logger.debug("Error occurred handling request", throwable);
}
} else {
logger.debug("Error occurred handling request - no application error handler was available to handle it - {}", throwable);
}
Expand Down