Skip to content

Commit

Permalink
Enable LOG checks too
Browse files Browse the repository at this point in the history
  • Loading branch information
Skylion007 committed Feb 22, 2024
1 parent c1cb3f0 commit d995abc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer/cli/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def main():
args = _parse_args()

logging.basicConfig()
log.setLevel(logging.INFO if args.verbose else logging.WARN)
log.setLevel(logging.INFO if args.verbose else logging.WARNING)

processes = {}

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ select = [
# TODO port pydocstyle
# "D", # pydocstyle
"PERF",
"LOG",
"PLE",
]

Expand Down

0 comments on commit d995abc

Please sign in to comment.