Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmdstanpy/stanfit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def from_csv(
runset._set_retcode(i, 0)
return CmdStanPathfinder(runset)
else:
get_logger().info(
get_logger().warning(
'Unable to process CSV output files from method %s.',
(config_dict['method']),
)
Expand Down
4 changes: 2 additions & 2 deletions cmdstanpy/utils/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ def get_logger() -> logging.Logger:
if not logger.hasHandlers():
# send all messages to handlers
logger.setLevel(logging.DEBUG)
# add a default handler to the logger to INFO and higher
# add a default handler to the logger to WARNING and higher
handler = logging.StreamHandler()
handler.setLevel(logging.INFO)
handler.setLevel(logging.WARNING)
handler.setFormatter(
logging.Formatter(
"%(asctime)s - %(name)s - %(levelname)s - %(message)s",
Expand Down