博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
log日志 和回滚日志
阅读量:4982 次
发布时间:2019-06-12

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

# coding=utf8 # import  logging # # logging.basicConfig(level=logging.DEBUG, #                 format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s', #                 datefmt='%a, %d %b %Y %H:%M:%S', #                 filename='myapp.log', #                 filemode='w') # # logging.debug('This is debug message') # # logging.info('This is info message') # a=[1,2,3,4] # for aa in a: #  try : #     aa=a[5] #     print aa #  except Exception, e: #     print e #     logging.warning('This is warning message %s'%(e)) import time # import logging import logging.handlers # logging初始化工作 logging.basicConfig() # myapp的初始化工作 myapp = logging.getLogger('myapp') myapp.setLevel(logging.INFO) # 写入文件,如果文件超过100个Bytes,仅保留5个文件。 handler = logging.handlers.RotatingFileHandler(    'myapp.log', maxBytes=10*1024, backupCount=5) formatter = logging.Formatter('%(asctime)s|%(name)-12s: %(levelname)-8s %(message)s') handler.setFormatter(formatter) # 设置后缀名称,跟strftime的格式一样 myapp.addHandler(handler) while True:    time.sleep(0.1)    myapp.info("file test")

转载于:https://www.cnblogs.com/xiaoxiaoshuaishuai0219/p/9105952.html

你可能感兴趣的文章
UVA 1839 Alignment
查看>>
[HDOJ5350]MZL's munhaff function
查看>>
[每日一题] OCP1z0-047 :2013-08-06 外表部――相关描述
查看>>
《构建之法》阅读笔记04-代码规范
查看>>
Python3+Wordcloud 实现单身相亲网站词云分析
查看>>
hdu 2105
查看>>
1309-瑞士轮-归并
查看>>
UISplitViewController-分割控件自定义分割宽度是无法实现的
查看>>
MSMQ学习
查看>>
python网络爬虫--简单爬取糗事百科
查看>>
Button类控件
查看>>
扫雷但是不会恭喜
查看>>
阳光动力2号的技术特性
查看>>
NS3网络仿真(5): 数据包分析
查看>>
Hasen的linux设备驱动开发学习之旅--时钟
查看>>
观察者模式
查看>>
python_封装redis_list方法
查看>>
nodejs 使用代理发送http/https请求
查看>>
node安装
查看>>
开发工具之IAR下载与安装
查看>>