Skip to content

Commit 0b2fe0a

Browse files
committed
making output less verbose
1 parent 8ba289d commit 0b2fe0a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

biojava-structure/src/main/java/org/biojava/nbio/structure/io/mmcif/SimpleMMcifConsumer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ private void linkEntities() {
900900
if (entityId==null) {
901901
// this can happen for instance if the cif file didn't have _struct_asym category at all
902902
// and thus we have no asymId2entityId mapping at all
903-
logger.warn("No entity id could be found for chain {}", chain.getId());
903+
logger.info("No entity id could be found for chain {}", chain.getId());
904904
continue;
905905
}
906906
int eId = Integer.parseInt(entityId);
@@ -1054,7 +1054,7 @@ private void alignSeqRes() {
10541054
if (atomChain == null) {
10551055
// most likely there's no observed residues at all for the seqres chain: can't map
10561056
// e.g. 3zyb: chains with asym_id L,M,N,O,P have no observed residues
1057-
logger.warn("Could not map SEQRES chain with asym_id={} to any ATOM chain. Most likely there's no observed residues in the chain.",
1057+
logger.info("Could not map SEQRES chain with asym_id={} to any ATOM chain. Most likely there's no observed residues in the chain.",
10581058
seqResChain.getId());
10591059
continue;
10601060
}

0 commit comments

Comments
 (0)