Skip to content

Commit 08ed01f

Browse files
committed
making output less verbose
1 parent 7817e94 commit 08ed01f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

biojava-structure/src/main/java/org/biojava/nbio/structure/io/PDBFileParser.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1841,13 +1841,13 @@ private void pdb_ATOM_Handler(String line) {
18411841
element = Element.valueOfIgnoreCase(elementSymbol);
18421842
guessElement = false;
18431843
} catch (IllegalArgumentException e){
1844-
logger.warn("Element {} of atom {} {} was not recognised. Assigning atom element "
1844+
logger.info("Element {} of atom {} {} was not recognised. Assigning atom element "
18451845
+ "from Chemical Component Dictionary information", elementSymbol,
18461846
fullname.trim(), pdbnumber);
18471847
}
18481848
}
18491849
} else {
1850-
logger.warn("Missformatted PDB file: element column of atom {} {} is not present. "
1850+
logger.info("Missformatted PDB file: element column of atom {} {} is not present. "
18511851
+ "Assigning atom element from Chemical Component Dictionary information",
18521852
fullname.trim(), pdbnumber);
18531853
}
@@ -1861,14 +1861,14 @@ private void pdb_ATOM_Handler(String line) {
18611861
}
18621862
}
18631863
if (elementSymbol == null) {
1864-
logger.warn("Atom name {} was not found in the Chemical Component Dictionary information of {}. "
1864+
logger.info("Atom name {} was not found in the Chemical Component Dictionary information of {}. "
18651865
+ "Assigning generic element R to it", fullname.trim(), currentGroup.getPDBName());
18661866
} else {
18671867
try {
18681868
element = Element.valueOfIgnoreCase(elementSymbol);
18691869
} catch (IllegalArgumentException e) {
18701870
// this can still happen for cases like UNK
1871-
logger.warn("Element symbol {} found in chemical component dictionary for Atom {} {} could not be recognised as a known element. "
1871+
logger.info("Element symbol {} found in chemical component dictionary for Atom {} {} could not be recognised as a known element. "
18721872
+ "Assigning generic element R to it", elementSymbol, fullname.trim(), pdbnumber);
18731873
}
18741874
}
@@ -3552,4 +3552,4 @@ public FileParsingParameters getFileParsingParameters(){
35523552
}
35533553

35543554

3555-
}
3555+
}

0 commit comments

Comments
 (0)