본문 바로가기
Developing../Python

로그남기는 법2 : 표준출력+로그파일 생성하기

by bents 2022. 7. 27.
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
...