debug: 에러 로깅 강화 (traceback 포함)

This commit is contained in:
thug0bin 2026-02-27 16:02:22 +09:00
parent 76da7d9cd1
commit 87a56d0f6c

View File

@ -3108,7 +3108,8 @@ def api_member_history(phone):
} for i in interests]
except Exception as e:
logging.warning(f"마일리지 조회 실패: {e}")
import traceback
logging.error(f"마일리지 조회 실패: {e}\n{traceback.format_exc()}")
finally:
# SQLite 연결 닫기
if sqlite_conn: