logger추가
All checks were successful
Build And Test / build-and-push (push) Successful in 2m41s

This commit is contained in:
2025-05-21 07:36:16 +09:00
parent 953d6c28a0
commit 175168fd4e
3 changed files with 15 additions and 7 deletions

View File

@ -95,15 +95,12 @@ LOGGING = {
'level': 'WARNING', # 보안 관련 경고
'propagate': False,
},
# mattermost send message log 너무 많이 나와서 조정
'apscheduler': {
'handlers': ['console'],
'level': 'WARNING', # INFO 로그 안 보이게 함 | 'CRITICAL'로 맞추면 사실상 아무것도 안 찍힘
'propagate': False,
},
},
}
if DEBUG:
LOGGING['loggers']['django.db.backends']['level'] = 'DEBUG'
AUTH_VERIFY_URL = os.environ.get('AUTH_VERIFY_URL', 'NONE')
ALLOWED_HOSTS = ["*"]