博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
logging日志管理-将日志写入文件
阅读量:6265 次
发布时间:2019-06-22

本文共 505 字,大约阅读时间需要 1 分钟。

# -*- coding: cp936 -*-# test.py#http://blog.chinaunix.net/uid-27571599-id-3492860.html#logging日志管理#将日志写入文件import logging#创建日志log文件,注意是log后缀log_filename='loggingTest.log'#设置日志格式log_format='%(filename)s [%(asctime)s] [%(levelname)s] %(message)s'#设置时间格式datetime='%Y-%m-%d %H:%M:%S'#设置日志输出格式和级别#filemode:以什么模式操作文件logging.basicConfig(filename=log_filename,filemode='w',format=log_format,datetime=datetime,level=logging.DEBUG)logging.debug('this message debug')logging.info('xiaodeng')logging.warning('python')

 

转载地址:http://rkdpa.baihongyu.com/

你可能感兴趣的文章
做为一个前端工程师,是往node方面转,还是往HTML5方面转
查看>>
spark 安装配置
查看>>
图片裁剪和异步上传插件--一步到位(记录)
查看>>
在Vs2012 中使用SQL Server 2012 Express LocalDB打开Sqlserver2012数据库
查看>>
【分享】博客美化(7)推荐几个优秀的自定义博客
查看>>
人工智能和机器学习领域的一些有趣的开源项目
查看>>
python sorted排序
查看>>
python中xrange和range的异同
查看>>
PHP根据ASCII码返回具体的字符
查看>>
atitit.系统架构图 的设计 与工具 attilax总结
查看>>
URAL 1774 A - Barber of the Army of Mages 最大流
查看>>
处理器(CPU)调度问题
查看>>
leetcode - 位运算题目汇总(下)
查看>>
多少个矩形被覆盖
查看>>
22、ASP.NET MVC入门到精通——搭建项目框架
查看>>
3-7 类的友元函数的应用
查看>>
IntelliJ IDEA安装 一些配置
查看>>
【算法之美】求解两个有序数组的中位数 — leetcode 4. Median of Two Sorted Arrays
查看>>
post请求和get请求
查看>>
零成本实现接口自动化测试 – Java+TestNG 测试Restful service
查看>>