forgot to surround the file name variables with quotes

This commit is contained in:
ronny abraham 2023-12-12 21:47:12 +02:00
parent 441859c7c4
commit 0ba56b2f3e
2 changed files with 2 additions and 2 deletions

View file

@ -140,7 +140,7 @@ LOGGING = {
'root': {
# automatically set to level WARNING
'handlers': ['console.code', {{ file_log_handler__name_project }}, {{ file_debug_handler__name_server }}' ],
'handlers': ['console.code', '{{ file_log_handler__name_project }}', '{{ file_debug_handler__name_server }}' ],
'propagate': True,
},

View file

@ -140,7 +140,7 @@ LOGGING = {
'root': {
# automatically set to level WARNING
'handlers': ['console.code', {{ file_log_handler__name_project }}, {{ file_debug_handler__name_server }}' ],
'handlers': ['console.code', '{{ file_log_handler__name_project }}', '{{ file_debug_handler__name_server }}' ],
'propagate': True,
},