We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4a9f55c + 1a9c964 commit d94f993Copy full SHA for d94f993
paths_cli/cli.py
@@ -95,6 +95,13 @@ def main(log):
95
logging.config.fileConfig(log, disable_existing_loggers=False)
96
# TODO: if log not given, check for logging.conf in .openpathsampling/
97
98
+ # TODO: remove when openmmtools doesn't trigger these warnings
99
+ silence_warnings = ['pymbar.mbar_solvers', 'pymbar.timeseries']
100
+ for lname in silence_warnings:
101
+ logger = logging.getLogger(lname)
102
+ logger.setLevel(logging.CRITICAL)
103
+
104
105
logger = logging.getLogger(__name__)
106
logger.debug("About to run command") # TODO: maybe log invocation?
107
0 commit comments