From 87df7cd4be4828ac1d70f3c79c0c8db583d97ad1 Mon Sep 17 00:00:00 2001 From: Paolo Di Tommaso Date: Tue, 14 Jan 2025 11:53:49 +0100 Subject: [PATCH] Dump threads only with trace log level [ci fast] Signed-off-by: Paolo Di Tommaso --- modules/nextflow/src/main/groovy/nextflow/Session.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/nextflow/src/main/groovy/nextflow/Session.groovy b/modules/nextflow/src/main/groovy/nextflow/Session.groovy index 7405949971..c9054e6673 100644 --- a/modules/nextflow/src/main/groovy/nextflow/Session.groovy +++ b/modules/nextflow/src/main/groovy/nextflow/Session.groovy @@ -799,7 +799,8 @@ class Session implements ISession { if( status ) log.debug(status) // dump threads status - log.debug(SysHelper.dumpThreads()) + if( log.isTraceEnabled() ) + log.trace(SysHelper.dumpThreads()) // force termination notifyError(null) ansiLogObserver?.forceTermination()