Move noisy, non-fatal Pipeline info log to debug (#5601)

Signed-off-by: Simon Dudley <simon.dudley@consensys.net>
This commit is contained in:
Simon Dudley
2023-06-15 08:47:34 +10:00
committed by GitHub
parent da16402162
commit 2d63987566

View File

@@ -169,7 +169,7 @@ public class Pipeline<I> {
if (tracingEnabled) {
taskSpan.setStatus(StatusCode.ERROR);
}
LOG.info("Unhandled exception in pipeline. Aborting.", t);
LOG.debug("Unhandled exception in pipeline. Aborting.", t);
try {
abort(t);
} catch (final Throwable t2) {