only log idlerpg at DEBUG level

the IRC bot is spammy otherwise

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
Brian S. Stephan 2024-05-10 12:12:54 -05:00
parent b9e8976b0f
commit ab9690fa1c
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
1 changed files with 6 additions and 1 deletions

View File

@ -140,9 +140,14 @@ LOGGING = {
},
},
'loggers': {
'': {
'idlerpg': {
'handlers': ['console'],
'level': 'DEBUG',
'propagate': False,
},
'': {
'handlers': ['console'],
'level': 'INFO',
'propagate': True,
},
}