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 89dcd4c commit 1b6666bCopy full SHA for 1b6666b
cmdstanpy/utils/logging.py
@@ -15,10 +15,10 @@ def get_logger() -> logging.Logger:
15
logger = logging.getLogger("cmdstanpy")
16
if not logger.hasHandlers():
17
# send all messages to handlers
18
- logger.setLevel(logging.DEBUG)
19
- # add a default handler to the logger to INFO and higher
+ logger.setLevel(logging.WARNING)
+ # add a default handler to the logger to WARNING and higher
20
handler = logging.StreamHandler()
21
- handler.setLevel(logging.INFO)
+ handler.setLevel(logging.WARNING)
22
handler.setFormatter(
23
logging.Formatter(
24
"%(asctime)s - %(name)s - %(levelname)s - %(message)s",
0 commit comments