feat(conftest): set default logging.conf to DEBUG

We now maintain a logging.prod.conf, which should contain sane
defaults for a production instance. Our main logging.conf is
a good default for both testing and debugging, but provides
too much logging for production.

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-12-07 12:07:44 -08:00
parent 50d6a9b5c8
commit 409229739e
No known key found for this signature in database
GPG key ID: F7E46DED420788F3
2 changed files with 64 additions and 1 deletions

View file

@ -14,7 +14,9 @@ handlers=
propogate=0
[logger_aurweb]
level=INFO
; This loglevel is set to DEBUG for tests where we expect specific
; debug logging to occur. In production, this should be set to INFO.
level=DEBUG
handlers=simpleHandler
qualname=aurweb
propagate=1