diff --git a/fedmsg.d/logging.py b/fedmsg.d/logging.py new file mode 100644 index 00000000..0e43586b --- /dev/null +++ b/fedmsg.d/logging.py @@ -0,0 +1,16 @@ +# 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"], + }, + ), + ), +)