Skip to content

Commit

Permalink
Default log level warning (#508)
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkgr authored Jan 18, 2023
1 parent 8d29321 commit 3760419
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Warnings about locks are now reliably printed every 30 seconds

### Changed

- The default log level for Tango is now `warning`.


## [v1.1.0](https://github.com/allenai/tango/releases/tag/v1.1.0) - 2022-12-01

Expand Down
2 changes: 1 addition & 1 deletion tango/common/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ def _initialize_logging(
if log_level is None:
log_level = TANGO_LOG_LEVEL
if log_level is None:
log_level = "error"
log_level = "warning"
if file_friendly_logging is None:
file_friendly_logging = FILE_FRIENDLY_LOGGING
if enable_cli_logs is None:
Expand Down

0 comments on commit 3760419

Please sign in to comment.