From 9aa2b9d60f0d0428f982cbf909643db4bd6b89a8 Mon Sep 17 00:00:00 2001 From: adamrtalbot <12817534+adamrtalbot@users.noreply.github.com> Date: Wed, 11 Dec 2024 13:28:40 +0000 Subject: [PATCH] remove log.warn Signed-off-by: adamrtalbot <12817534+adamrtalbot@users.noreply.github.com> --- .../src/main/nextflow/cloud/azure/batch/AzBatchService.groovy | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/nf-azure/src/main/nextflow/cloud/azure/batch/AzBatchService.groovy b/plugins/nf-azure/src/main/nextflow/cloud/azure/batch/AzBatchService.groovy index 243d3f9a00..b2628ba404 100644 --- a/plugins/nf-azure/src/main/nextflow/cloud/azure/batch/AzBatchService.groovy +++ b/plugins/nf-azure/src/main/nextflow/cloud/azure/batch/AzBatchService.groovy @@ -203,7 +203,6 @@ class AzBatchService implements Closeable { } } def sortedScores = scores.sort { it[0] } - log.warn "[AZURE BATCH] sortedScores: $sortedScores" return sortedScores ? getVmType(location, sortedScores.first()[1] as String) : null }