made log var a env variable

This commit is contained in:
Thomas Nahuel Rusiecki 2024-12-09 18:37:53 -03:00 committed by Cayo Puigdefabregas
parent 846166bd9f
commit 0d9dc90362
2 changed files with 4 additions and 1 deletions

View file

@ -5,6 +5,7 @@ DEMO=true
DEBUG=true
DPP=false
DEVICE_LOG_PATH=/tmp
STATIC_ROOT=/tmp/static/
MEDIA_ROOT=/tmp/media/
EMAIL_HOST="mail.example.org"

View file

@ -65,6 +65,8 @@ ENABLE_EMAIL = config("ENABLE_EMAIL", default=True, cast=bool)
EVIDENCES_DIR = config("EVIDENCES_DIR", default=os.path.join(BASE_DIR, "db"))
DEVICE_LOG_PATH = config("DEVICE_LOG_PATH", default="/tmp")
# Application definition
INSTALLED_APPS = [
@ -229,7 +231,7 @@ LOGGING = {
'device_log_file': {
'level': 'INFO',
'class': 'logging.FileHandler',
'filename': '/var/log/device_changes.log',
'filename': DEVICE_LOG_PATH + "/device_changes.log",
'formatter': 'verbose',
},
},