Answer the question
In order to leave comments, you need to log in
Internal Server Error while setting up django logs?
Knocks out an error as I add to settings.
settings.py
...
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'file': {
'level': 'DEBUG',
'class': 'logging.FileHandler',
'filename': 'home/django/pro/djangopt/log/debug.log', # путь до файла
},
},
'loggers': {
'django': { #<-- Не совсем понял что это. Вроде как папку которую он будет смотреть(app) или файл.. (ставил blog все равно)-->
'handlers': ['file'],
'level': 'DEBUG',
'propagate': True,
},
},
}
...
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question