Reduced logging level on Subscriber error callback. (#4485)

Signed-off-by: mark-terry <mark.terry@consensys.net>

Signed-off-by: mark-terry <mark.terry@consensys.net>
Co-authored-by: Sally MacFarlane <macfarla.github@gmail.com>
This commit is contained in:
mark-terry
2022-10-07 12:12:57 +10:00
committed by GitHub
parent 45a8c7cece
commit aa849839b8

View File

@@ -112,7 +112,7 @@ public class Subscribers<T> {
action.accept(subscriber);
} catch (final Exception e) {
if (suppressCallbackExceptions) {
LOG.error("Error in callback: {}", e.getMessage());
LOG.info("Error in callback: {}", e.getMessage());
LOG.debug("Error in callback: ", e);
} else {
throw e;