Skip to content

Commit

Permalink
환경 변수 로드 로그에서 SMTP 비밀번호 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharknia committed Nov 29, 2024
1 parent 79c3120 commit a355889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/data_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def load_data(self):
smtp_port = os.getenv("SMTP_PORT", "465")
smtp_email = os.getenv("SMTP_EMAIL", "")
smtp_password = os.getenv("SMTP_PASSWORD", "")
logger.info("환경 변수 로드: %s, %s, %s", keyword, smtp_email, smtp_password)
logger.info("환경 변수 로드: %s, %s", keyword, smtp_email)
# 기존 파일이 없으면 환경 변수 기반 초기 데이터 생성
if not os.path.exists(self.file_path):
logger.info("새로운 데이터 파일 생성")
Expand Down

0 comments on commit a355889

Please sign in to comment.