From f8d5b1deab2f7a25be7f77adeaefdd23c188dbcf Mon Sep 17 00:00:00 2001 From: Ben Soares Date: Mon, 14 Nov 2022 09:07:32 +0000 Subject: [PATCH] JAL-4019 Make diagnostic message debug level --- src/jalview/util/Comparison.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jalview/util/Comparison.java b/src/jalview/util/Comparison.java index af6052c..68988c3 100644 --- a/src/jalview/util/Comparison.java +++ b/src/jalview/util/Comparison.java @@ -326,7 +326,7 @@ public class Comparison if (Cache.getDefault("NUCLEOTIDE_AMBIGUITY_DETECTION", true)) { - Console.info("Performing new nucleotide detection routine"); + Console.debug("Performing new nucleotide detection routine"); if (allCount > NUCLEOTIDE_COUNT_SHORT_SEQUENCE) { // a long sequence. @@ -365,7 +365,7 @@ public class Comparison } else { - Console.info("Performing old nucleotide detection routine"); + Console.debug("Performing old nucleotide detection routine"); /* * Check for nucleotide count > 85% of total count (in a form that evades * int / float conversion or divide by zero). -- 1.7.10.2