Skip to content

Commit bd3c632

Browse files
committed
To squash
Signed-off-by: Rossen Stoyanchev <[email protected]>
1 parent 83d7e28 commit bd3c632

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

rsocket-core/src/main/java/io/rsocket/core/RSocketResponder.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,9 @@ private synchronized void cleanUpChannelProcessors(Throwable e) {
283283
try {
284284
entry.value().onError(e);
285285
} catch (Throwable ex) {
286-
// noops
286+
if (LOGGER.isDebugEnabled()) {
287+
LOGGER.debug("Dropped exception", ex);
288+
}
287289
}
288290
}
289291
channelProcessors.clear();

0 commit comments

Comments
 (0)