Print "Parsing data stream with BCF version BCFx.y" in BCF2 codec as .debug not .info

This commit is contained in:
Mark DePristo 2012-08-19 10:32:55 -04:00
parent 9121b98167
commit 7fa76f719b
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ public final class BCF2Codec implements FeatureCodec<VariantContext> {
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);