1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-16 17:12:21 +03:00

Merge pull request #709 from EDCD/fix/found-plugin-logging

Plugin logging needs to be DEBUG, to let channels decide later.
This commit is contained in:
Athanasius 2020-09-18 12:37:38 +01:00 committed by GitHub
commit 7d66a47b4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,7 @@ from config import appname, config
#
# 14. Call from *package*
_default_loglevel = logging.INFO
_default_loglevel = logging.DEBUG
class Logger:
@ -326,6 +326,7 @@ class EDMCContextFilter(logging.Filter):
return module_name
# Singleton
loglevel = config.get('loglevel')
if not loglevel: