mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-02-09 08:13:21 +08:00
It may be nice to have the scheduler be more quiet when run inside docker. Our DEBUG output level is very spammy. /cc @mjia
18 lines
421 B
Python
18 lines
421 B
Python
config = dict(
|
|
logging=dict(
|
|
loggers=dict(
|
|
# Quiet this guy down...
|
|
requests={
|
|
"level": "WARNING",
|
|
"propagate": True,
|
|
"handlers": ["console"],
|
|
},
|
|
module_build_service={
|
|
"level": "INFO",
|
|
"propagate": True,
|
|
"handlers": ["console"],
|
|
},
|
|
),
|
|
),
|
|
)
|