博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Django logging配置
阅读量:5301 次
发布时间:2019-06-14

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

做开发离不开日志,以下是工作中写Django项目常用的logging配置。

BASE_LOG_DIR = os.path.join(BASE_DIR, "log")LOGGING = {    'version': 1,    'disable_existing_loggers': False,    'formatters': {        'standard': {            'format': '[%(asctime)s][%(threadName)s:%(thread)d][task_id:%(name)s][%(filename)s:%(lineno)d]'                      '[%(levelname)s][%(message)s]'        },        'simple': {            'format': '[%(levelname)s][%(asctime)s][%(filename)s:%(lineno)d]%(message)s'        },        'collect': {            'format': '%(message)s'        }    },    'filters': {        'require_debug_true': {            '()': 'django.utils.log.RequireDebugTrue',        },    },    'handlers': {        'console': {            'level': 'DEBUG',            'filters': ['require_debug_true'],  # 只有在Django debug为True时才在屏幕打印日志            'class': 'logging.StreamHandler',            'formatter': 'simple'        },        'SF': {            'level': 'INFO',            'class': 'logging.handlers.RotatingFileHandler',  # 保存到文件,根据文件大小自动切            'filename': os.path.join(BASE_LOG_DIR, "xxx_info.log"),  # 日志文件            'maxBytes': 1024 * 1024 * 50,  # 日志大小 50M            'backupCount': 3,  # 备份数为3  xx.log --> xx.log.1 --> xx.log.2 --> xx.log.3            'formatter': 'standard',            'encoding': 'utf-8',        },        'TF': {            'level': 'INFO',            'class': 'logging.handlers.TimedRotatingFileHandler',  # 保存到文件,根据时间自动切            'filename': os.path.join(BASE_LOG_DIR, "xxx_info.log"),  # 日志文件            'backupCount': 3,  # 备份数为3  xx.log --> xx.log.2018-08-23_00-00-00 --> xx.log.2018-08-24_00-00-00 --> ...            'when': 'D',  # 每天一切, 可选值有S/秒 M/分 H/小时 D/天 W0-W6/周(0=周一) midnight/如果没指定时间就默认在午夜            'formatter': 'standard',            'encoding': 'utf-8',        },        'error': {            'level': 'ERROR',            'class': 'logging.handlers.RotatingFileHandler',  # 保存到文件,自动切            'filename': os.path.join(BASE_LOG_DIR, "xxx_err.log"),  # 日志文件            'maxBytes': 1024 * 1024 * 5,  # 日志大小 50M            'backupCount': 5,            'formatter': 'standard',            'encoding': 'utf-8',        },        'collect': {            'level': 'INFO',            'class': 'logging.handlers.RotatingFileHandler',  # 保存到文件,自动切            'filename': os.path.join(BASE_LOG_DIR, "xxx_collect.log"),            'maxBytes': 1024 * 1024 * 50,  # 日志大小 50M            'backupCount': 5,            'formatter': 'collect',            'encoding': "utf-8"        }    },    'loggers': {        '': {  # 默认的logger应用如下配置            'handlers': ['SF', 'console', 'error'],  # 上线之后可以把'console'移除            'level': 'DEBUG',            'propagate': True,        },        'collect': {  # 名为 'collect'的logger还单独处理            'handlers': ['console', 'collect'],            'level': 'INFO',        }    },}

 

附:Python logger流示图

 

转载于:https://www.cnblogs.com/zhigu/p/10048853.html

你可能感兴趣的文章
nodejs vs python
查看>>
poj-1410 Intersection
查看>>
艰难中前行
查看>>
[pytorch学习]1.pytorch ubuntu安装
查看>>
阿里云CentOS 安装配置ASPNET Core
查看>>
repeater 分页显示数据
查看>>
HDU-3666 THE MATRIX PROBLEM
查看>>
鼠标悬停放大图片 - 漂亮
查看>>
【转载】博士后了
查看>>
IDEA操作git的一些常用技巧
查看>>
Java多线程基础(一)
查看>>
TCP粘包拆包问题
查看>>
Java中Runnable和Thread的区别
查看>>
SQL Server中利用正则表达式替换字符串
查看>>
POJ 1015 Jury Compromise(双塔dp)
查看>>
UIScrollView,UICollectionView 和UITableView的属性和方法
查看>>
JavaScript-10(JavaScript事件)
查看>>
JavaScript 动态显示当前时间
查看>>
常用的 Http ContentType 对照表
查看>>
论三星输入法的好坏
查看>>