我使用的Python库使用logging模块。但是,我创建了自己的log函数,脚本在内部使用。在
下面是我要使用的日志记录功能:def log(name, content, swtch : bool = None, time = None):
time = time or datetime.now(pytz.timezone('US/Pacific'))
if swtch == True or swtch == None:
toPrint = '{1.RED}{2}/{3}/{4} {5}:{6}:{7}:{8} {9} {0.BRIGHT}{1.GREEN}{10} {0.RESET_ALL}{11}{0.RESET_ALL}'.format(
Style,
Fore,
str(time.month).zfill(2),
str(time.day).zfill(2),
str(time.year)[2:],
str(time.hour % 12).zfill(2),
str(time.minute).zfill(2),
str(time.second).zfill(2),
str(int(time.microsecond / 1000)).zfill(3),
'AM' if time.hour < 12 else 'PM',
name,
content
)
print(toPrint)
log_txt = ''
if swtch == False or swtch == None:
file = open('log.txt', 'r')
log_txt = file.read()
file.close()
with open('log.txt', 'w') as file:
text = '{0}/{1}/{2} {3}:{4}:{5}:{6} {7} {8} {9}'.format(
str(time.month).zfill(2),
str(time.day).zfill(2),
str(time.year)[2:],
str(time.hour % 12).zfill(2),
str(time.minute).zfill(2),
str(time.second).zfill(2),
str(int(time.microsecond / 1000)).zfill(3),
'AM' if time.hour < 12 else 'PM',
name,
content
)
file.write(log_txt + text + '\n')
让我们假设有一个名为some_logger的记录器。在
^{pr2}$
有没有办法代替打印到stdout,而是将位置参数(表示日志信息)传递给另一个函数?(为了澄清:一个将使用所需参数调用log的函数)