Skip to content

Commit cc7b3ae

Browse files
committed
prevent logs disabling other logs
1 parent 980f09a commit cc7b3ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arq/logs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def default_log_config(verbose: bool) -> dict:
4444
log_level = 'DEBUG' if verbose else 'INFO'
4545
return {
4646
'version': 1,
47-
'disable_existing_loggers': True,
47+
'disable_existing_loggers': False,
4848
'handlers': {
4949
'colour': {
5050
'level': log_level,

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ testpaths = tests
33
addopts = --isort
44

55
[flake8]
6+
max-complexity = 10
67
max-line-length = 120
7-
max-complexity = 12
88

99
[bdist_wheel]
1010
python-tag = py35

0 commit comments

Comments
 (0)