Adding duplicate header line keys is a logger.debug not logger.warn message now
This commit is contained in:
parent
01e04992f8
commit
bcd2e13d8b
|
|
@ -214,7 +214,7 @@ public class VCFHeader {
|
||||||
private final <T extends VCFCompoundHeaderLine> void addMetaDataMapBinding(final Map<String, T> map, T line) {
|
private final <T extends VCFCompoundHeaderLine> void addMetaDataMapBinding(final Map<String, T> map, T line) {
|
||||||
final String key = line.getID();
|
final String key = line.getID();
|
||||||
if ( map.containsKey(key) )
|
if ( map.containsKey(key) )
|
||||||
logger.warn("Found duplicate VCF header lines for " + key + "; keeping the first only" );
|
logger.debug("Found duplicate VCF header lines for " + key + "; keeping the first only" );
|
||||||
else
|
else
|
||||||
map.put(key, line);
|
map.put(key, line);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue