Default log level is `DEBUG`

This commit is contained in:
Mauro Mugnaini 2023-04-17 17:28:59 +02:00
parent 6b0ffd349c
commit e2b8c6427c
3 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
[common]
loggerconfig = logging.conf
server = http://conductor-dev.int.d4science.net/api
server = https://conductor.dev.d4science.org/api
#server = https://conductor.pre.d4science.org/api
#server = http://localhost:8080/api
threads = 1
pollrate = 1
#auth = b64encoded-clientid-and-secret
#auth = b64encoded-clientid-and-secret

View File

@ -8,12 +8,12 @@ keys=consoleHandler
keys=simpleFormatter
[logger_root]
level=INFO
level=DEBUG
handlers=consoleHandler
[handler_consoleHandler]
class=StreamHandler
level=INFO
level=DEBUG
formatter=simpleFormatter
args=(sys.stdout,)

View File

@ -21,7 +21,7 @@ args=(sys.stdout,)
class=handlers.TimedRotatingFileHandler
interval=midnight
backupCount=5
level=INFO
level=DEBUG
formatter=simpleFormatter
args=('worker.log',)