We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83d7e28 commit bd3c632Copy full SHA for bd3c632
rsocket-core/src/main/java/io/rsocket/core/RSocketResponder.java
@@ -283,7 +283,9 @@ private synchronized void cleanUpChannelProcessors(Throwable e) {
283
try {
284
entry.value().onError(e);
285
} catch (Throwable ex) {
286
- // noops
+ if (LOGGER.isDebugEnabled()) {
287
+ LOGGER.debug("Dropped exception", ex);
288
+ }
289
}
290
291
channelProcessors.clear();
0 commit comments