Skip to content

Commit ad8d09e

Browse files
committed
Change log level.
1 parent a49760d commit ad8d09e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/ghostly/_ghostly.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ def _select_anchor(mol, candidates, bridge_indices):
520520
break # Can't do better.
521521

522522
if best != candidates[0]:
523-
_logger.info(
523+
_logger.debug(
524524
f" Anchor selection: chose atom {best.value()} over "
525525
f"{candidates[0].value()} (avoiding bridge/transmuting atom)"
526526
)
@@ -1902,12 +1902,12 @@ def _soften_mixed_dihedrals(
19021902
n_softened = len(modifications[mod_key]["softened_dihedrals"])
19031903
lam = f"{_lam_sym}={int(is_lambda1)}"
19041904
if soften_anchors > 0.0:
1905-
_logger.info(
1905+
_logger.debug(
19061906
f"Softened {n_softened} mixed ghost/physical dihedrals at "
19071907
f"{lam} (scale={soften_anchors})"
19081908
)
19091909
else:
1910-
_logger.info(f"Removed all mixed ghost/physical dihedrals at {lam}")
1910+
_logger.debug(f"Removed all mixed ghost/physical dihedrals at {lam}")
19111911

19121912
# Return the updated molecule.
19131913
return mol

0 commit comments

Comments
 (0)