From 7fa76f719b7f1c348d6f8d70bad3ae03bda42e09 Mon Sep 17 00:00:00 2001 From: Mark DePristo Date: Sun, 19 Aug 2012 10:32:55 -0400 Subject: [PATCH] Print "Parsing data stream with BCF version BCFx.y" in BCF2 codec as .debug not .info --- .../org/broadinstitute/sting/utils/codecs/bcf2/BCF2Codec.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/java/src/org/broadinstitute/sting/utils/codecs/bcf2/BCF2Codec.java b/public/java/src/org/broadinstitute/sting/utils/codecs/bcf2/BCF2Codec.java index 60fcb6585..c221b8fba 100644 --- a/public/java/src/org/broadinstitute/sting/utils/codecs/bcf2/BCF2Codec.java +++ b/public/java/src/org/broadinstitute/sting/utils/codecs/bcf2/BCF2Codec.java @@ -149,7 +149,7 @@ public final class BCF2Codec implements FeatureCodec { if ( bcfVersion.getMinorVersion() < MIN_MINOR_VERSION ) error("BCF2Codec can only process BCF2 files with minor version >= " + MIN_MINOR_VERSION + " but this file has minor version " + bcfVersion.getMinorVersion()); - logger.info("Parsing data stream with BCF version " + bcfVersion); + logger.debug("Parsing data stream with BCF version " + bcfVersion); final int headerSizeInBytes = BCF2Type.INT32.read(inputStream);