1 Star 0 Fork 0

Alex omega/main

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
admins.py 847 Bytes
一键复制 编辑 原始数据 按行查看 历史
ETRO_omega 提交于 2023-08-15 12:57 . corg
from forms import get_time
def check(date=get_time()[0:10].replace("/","-")):
with open("P:\\ETRO.web\\project\\logging\\loggings-%s.log"%(date),"r",encoding="utf8") as loga:
jilus=loga.readlines()
infos=0;warns=0;quess=0;error=0;elses=0
for i in jilus:
type_=i[23:28]
#print(type_)
if type_=="INFO-":
infos+=1
elif type_=="QUES-":
quess+=1
elif type_=="WARN-":
warns+=1
elif type_=="ERROR":
error+=1
else:
elses+=1
print("审核了今天(%s)的日志文件,其中共%s条记录.\nINFO记录共 %s 条, QUES记录共 %s 条;\nWARN记录共 %s 条, ERROR记录共 %s 条, 其它记录共 %s 条."%(date.replace("-","/"),infos+quess+warns+error+elses,infos,quess,warns,error,elses))
check("2023-07-16")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/alex-omega/main.git
git@gitee.com:alex-omega/main.git
alex-omega
main
main
master

搜索帮助