生成不同时间下的LOG
Posted gexbooks
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了生成不同时间下的LOG相关的知识,希望对你有一定的参考价值。
class HangUp(object): current_path = os.getcwd() test_path = current_path + r‘/log/‘ log_name = test_path + time.strftime(‘%Y-%m-%d %H-%M-%S‘) + ".log" nowtime = time.time() def write_log(self, string, false_time=0.0, data=1814400.0): with open(self.log_name, "a") as f: save_time = time.strftime(‘%Y-%m-%d %H:%M:%S‘, time.localtime(self.nowtime - data + false_time)) print(save_time + ": " + string) f.write(‘ ‘ + save_time + ": " + string) f.close()
修改LOG时间
以上是关于生成不同时间下的LOG的主要内容,如果未能解决你的问题,请参考以下文章
在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途