日志文件的设置
2021/8/6 6:06:46
本文主要是介绍日志文件的设置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一、缘由
在脚本的运行中离不开日志文件,因为日志文件会更好的帮助我们找到出选的问题,或者来帮助我们审查是否出现问题,这样我们就不用时时刻刻的看着运行的过程也可以排除问题
二、代码展示
#coding:utf-8 import logging import os def init_log(path): if os.path.exists(path): mode='a' else: mode='w' logging.basicConfig( level=logging.INFO, format='%(asctime)s %(filename)s line:[%(lineno)d] %(levelname)s %(message)s', filename=path, filemode=mode ) return logging now_path=os.path.getcwd() new_path=os.path.join(now_path,'back2') log=init_log(new_path) log.info('自己的练习')
这篇关于日志文件的设置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Mybatis官方生成器资料详解与应用教程
- 2024-11-26Mybatis一级缓存资料详解与实战教程
- 2024-11-26Mybatis一级缓存资料详解:新手快速入门
- 2024-11-26SpringBoot3+JDK17搭建后端资料详尽教程
- 2024-11-26Springboot单体架构搭建资料:新手入门教程
- 2024-11-26Springboot单体架构搭建资料详解与实战教程
- 2024-11-26Springboot框架资料:新手入门教程
- 2024-11-26Springboot企业级开发资料入门教程
- 2024-11-26SpringBoot企业级开发资料详解与实战教程
- 2024-11-26Springboot微服务资料:新手入门全攻略