책 내용에 대한 무단배포 방지를 위해 최소한으로 정리
from time import localtime, strftime
logfile = 'test.log'
def writedog(logfile, log):
time_stamp = strftime('%Y-%m-%d %X\t', localtime())
log = time_stamp + log + '\n'
with open(logfile, 'a') as f:
f.writelines(log)
writelog(logfile, '첫 번째 로깅 문장입니다.')
Comments