mirror of
https://github.com/TriM-Organization/Musicreater.git
synced 2025-09-04 03:16:23 +00:00
提交1
This commit is contained in:
16
nmcsup/log.py
Normal file
16
nmcsup/log.py
Normal file
@ -0,0 +1,16 @@
|
||||
"""提供对于音创系列的日志"""
|
||||
|
||||
import datetime,os
|
||||
|
||||
#载入日志功能
|
||||
StrStartTime = str(datetime.datetime.now()).replace(':', '_')[:-7]
|
||||
'''字符串型的程序开始时间'''
|
||||
|
||||
|
||||
def log(info:str = ''):
|
||||
'''将信息连同当前时间载入日志'''
|
||||
if not os.path.exists('./log/'):
|
||||
os.makedirs('./log/')
|
||||
with open('./log/'+StrStartTime+'.msct.log', 'a',encoding='UTF-8') as f:
|
||||
f.write(str(datetime.datetime.now())[11:19]+' '+info+'\n')
|
||||
print(str(datetime.datetime.now())[11:19]+' '+info)
|
Reference in New Issue
Block a user