Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- JSON
- SSH
- C
- Visual Studio
- pytorch
- LIST
- 기타 연주
- Docker
- OpenCV
- C++
- windows forms
- 명령어
- label
- pip
- VS Code
- C#
- 핑거스타일
- 채보
- mysql
- ubuntu
- YOLO
- Python
- paramiko
- pandas
- error
- Numpy
- 프로그래머스
- Selenium
- 오류
- Linux
Archives
- Today
- Total
목록logger (1)
기계는 거짓말하지 않는다
Python logging 모듈 logger 설정(Settings)
Python logging 모듈의 logger를 설정하는 간단한 예제 함수 코드이다.경로와 loglevel은 필요에 따라 수정하면 된다.import loggingimport datetimeimport osdef setup_logger(log_file_name = "proccess.log", log_name = "logger", log_dir_root_path = "./logs"): current_date = datetime.datetime.now().strftime("%Y%m%d") log_dir = f"{log_dir_root_path}/{current_date}" os.makedirs(log_dir, exist_ok=True) # log file path setting ..
Python
2024. 7. 10. 21:55