Set logging level to INFO and xmlschema logging to WARNING
This eliminates the noisy messages about XML namespaces on startup and during management commands.
This commit is contained in:
parent
6af1e594ad
commit
7dd8a0ad2d
1 changed files with 6 additions and 1 deletions
|
@ -344,10 +344,15 @@ LOGGING = {
|
||||||
'level': 'DEBUG',
|
'level': 'DEBUG',
|
||||||
'propagate': True,
|
'propagate': True,
|
||||||
},
|
},
|
||||||
|
'xmlschema': {
|
||||||
|
'handlers': ['console'],
|
||||||
|
'level': 'WARNING',
|
||||||
|
'propagate': False,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
'root': {
|
'root': {
|
||||||
'handlers': ['console', 'djdt_log'],
|
'handlers': ['console', 'djdt_log'],
|
||||||
'level': 'DEBUG'
|
'level': 'INFO'
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
FIXTURE_DIRS = [
|
FIXTURE_DIRS = [
|
||||||
|
|
Loading…
Reference in a new issue