Files
fm-orchestrator/fedmsg.d/mbs-logging.py
mprahl 66c3f82160 Format the coding style across the codebase using "black" and manual tweaks
The main benefit of this commit is that the use of double quotes
is now consistent.
2019-04-26 00:32:13 -04:00

10 lines
293 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"]},
)
)
)