We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1b1292 commit b79ae88Copy full SHA for b79ae88
testsettings.py
@@ -19,3 +19,24 @@
19
)
20
21
SECRET_KEY = 'abcde12345'
22
+
23
+LOGGING = {
24
+ 'version': 1,
25
+ 'disable_existing_loggers': True,
26
+ 'handlers': {
27
+ 'console': {
28
+ 'level': 'DEBUG',
29
+ 'class': 'logging.StreamHandler',
30
+ },
31
32
+ 'root': {
33
+ 'handlers': ['console'],
34
+ 'level': 'INFO',
35
36
+ 'loggers': {
37
+ 'django_dbq': {
38
+ 'level': 'CRITICAL',
39
+ 'propagate': True,
40
41
+ }
42
+}
0 commit comments