This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit b897c3290b76a1da98ac7f4f363b51d1324310b4 Author: Claus Ibsen <[email protected]> AuthorDate: Thu Mar 5 10:30:10 2026 +0100 WARN log if junit pool is exhausted --- .../src/test/java/org/apache/camel/CamelParallelExecutionStrategy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/camel-core/src/test/java/org/apache/camel/CamelParallelExecutionStrategy.java b/core/camel-core/src/test/java/org/apache/camel/CamelParallelExecutionStrategy.java index 795083ad8a04..d8619b57ecd6 100644 --- a/core/camel-core/src/test/java/org/apache/camel/CamelParallelExecutionStrategy.java +++ b/core/camel-core/src/test/java/org/apache/camel/CamelParallelExecutionStrategy.java @@ -71,7 +71,7 @@ public class CamelParallelExecutionStrategy implements ParallelExecutionConfigur @Override public Predicate<? super ForkJoinPool> getSaturatePredicate() { return (ForkJoinPool pool) -> { - LOG.info("Junit ForkJoinPool saturated: running threads={}, pool size={}, queued tasks={}", + LOG.warn("Junit ForkJoinPool saturated: running threads={}, pool size={}, queued tasks={}", pool.getRunningThreadCount(), pool.getPoolSize(), pool.getQueuedTaskCount());
