diff --git a/src/main/java/io/wring/agents/Routine.java b/src/main/java/io/wring/agents/Routine.java index 4350254..01a601a 100644 --- a/src/main/java/io/wring/agents/Routine.java +++ b/src/main/java/io/wring/agents/Routine.java @@ -224,20 +224,17 @@ private static void close(final ExecutorService svc) * @return The job for this pipe */ private Runnable job(final Pipe pipe) { - return new VerboseRunnable( - new RunnableOf<>( - new FuncWithFallback( - new FuncOf<>(new Cycle(this.base)), - new FuncOf<>( - error -> { - Sentry.capture(error); - throw new IllegalStateException(error); - } - ) - ), - pipe + return new RunnableOf<>( + new FuncWithFallback( + new FuncOf<>(new Cycle(this.base)), + new FuncOf<>( + error -> { + Sentry.capture(error); + throw new IllegalStateException(error); + } + ) ), - false, true + pipe ); }