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.
1 parent b05951c commit 3867c5bCopy full SHA for 3867c5b
paths_cli/cli.py
@@ -94,6 +94,12 @@ def main(log):
94
logging.config.fileConfig(log, disable_existing_loggers=False)
95
# TODO: if log not given, check for logging.conf in .openpathsampling/
96
97
+ silence_warnings = ['pymbar.mbar_solvers', 'pymbar.timeseries']
98
+ for lname in silence_warnings:
99
+ logger = logging.getLogger(lname)
100
+ logger.setLevel(logging.CRITICAL)
101
+
102
103
logger = logging.getLogger(__name__)
104
logger.debug("About to run command") # TODO: maybe log invocation?
105
0 commit comments