Skip to content

Commit 687e029

Browse files
committed
fix logging in CifStructureConsumerImpl if type symbol is unknown
1 parent f1bcdb2 commit 687e029

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

biojava-structure/src/main/java/org/biojava/nbio/structure/io/cif/CifStructureConsumerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ public void consumeAtomSite(AtomSite atomSite) {
332332
atom.setElement(element);
333333
} catch (IllegalArgumentException e) {
334334
logger.info("Element {} was not recognised as a BioJava-known element, the element will be " +
335-
"represented as the generic element {}", typeSymbol, Element.R.name());
335+
"represented as the generic element {}", ts, Element.R.name());
336336
atom.setElement(Element.R);
337337
}
338338

0 commit comments

Comments
 (0)