[Code 개선] #1. [Logging] 구조화된 전역 로깅 시스템 도입 및 로거 유틸리티 구현 #45
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
1. 목표
단순
print문과traceback.print_exc()를 전면 제거하고, 파일 회전(Rotation) 기능이 포함된 표준 로깅 유틸리티를 도입하여 운영 안정성을 확보합니다.2. 상세 원인 및 배경
print()는 표준 출력(stdout)으로만 나가며, 서버 재시작 시 휘발됩니다.traceback정보가 체계 없이 출력되어 로그 분석 도구(ELK 등) 연동이 불가능합니다.Original: Kyeongmin/test#31