mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-02-09 08:13:21 +08:00
17 lines
429 B
Python
17 lines
429 B
Python
# Setup fedmsg logging.
|
|
# See the following for constraints on this format https://bit.ly/Xn1WDn
|
|
bare_format = "[%(asctime)s][%(name)10s %(levelname)7s] %(message)s"
|
|
|
|
config = dict(
|
|
logging=dict(
|
|
loggers=dict(
|
|
# Quiet this guy down...
|
|
requests={
|
|
"level": "WARNING",
|
|
"propagate": True,
|
|
"handlers": ["console"],
|
|
},
|
|
),
|
|
),
|
|
)
|