로그2 로그남기는 법2 : 표준출력+로그파일 생성하기 def custom_print(message_to_print, log_file='output.txt'): print(message_to_print) with open(log_file, 'a') as of: of.write(message_to_print + '\n') # Command 출력결과1 출력결과2 ... # output.txt 출력결과1 출력결과2 ... 2022. 7. 27. 로그에 대한 모든 것 - 로그 유형/구조 https://kic1.tistory.com/m/147 https://alsyean.tistory.com/12 - 리눅스 로그 종류 https://flightsim.tistory.com/m/235 https://m.blog.naver.com/kdi0373/220522832069 [Linux Log File] 리눅스 로그파일 종류 및 분석 리눅스 로그파일 종류 및 분석 1. Log File 소개 - 컴퓨터 시스템의 모든 사용내역을 기록하고 있는 파일... blog.naver.com 리눅스 로그 파일의 종류 및 로그 파일 분석 1. Log File의 종류 - 기본적인 로그들은 syslogd에 의해서 제어가 되며, syslogd의 설정파일인 /etc/syslog.conf 파일을 수정함으로써.. 2022. 5. 30. 이전 1 다음