-
zap自定义日志级别
简介
zap是有uber开发的一款日志库。
zap提供了三个快速创建Logger方法:
- NewProduction: 以JSON格式记录Info级别及以上的标准错误日志
- NewDevelopment: 以JSON格式记录Debug级别及以上的标准错误日志
- NewExample: 提供一个测试实例,供使用者根据结果进行自定义Logger实例配置
- New: 实现自定义的Logger
支持的日志级别
zap支持6种日志级别:
|
const ( |
|
// DebugLevel logs are typically voluminous, and are usually disabled in |
|
// production. |
|
DebugLevel = zapcore.DebugLevel |
|
// InfoLevel is the default logging priority. |
|
InfoLevel = zapcore.InfoLevel |
|
// WarnLevel logs are more important than Info, but don't need individual |
|
// human review. |
|
WarnLevel = zapcore.WarnLevel |
|
// ErrorLevel logs are high-priority. If an application is running smoothly, |
|
// it shouldn't generate any error-level logs. |
|
ErrorLevel = zapcore.ErrorLevel |
|
// DPanicLevel logs are particularly important errors. In development the |
|
// logger panics after writing the message. |
|
DPanicLevel = zapcore.DPanicLevel |
|
// PanicLevel logs a message, then panics. |
|
PanicLevel = zapcore.PanicLevel |
|
// FatalLevel logs a message, then calls os.Exit(1). |
|
FatalLevel = zapcore.FatalLevel |
|
) |
设置Logger日志级别
可以通过WithOption接口为Logger设置日志级别:
|
log.WithOptions(zap.IncreaseLevel(zapcore.DebugLevel)) |
声明:本作品采用署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)进行许可,使用时请注明出处。
Author: mengbin92
Github: https://mengbin92.github.io/
cnblogs: 恋水无意
出处:https://www.cnblogs.com/lianshuiwuyi/p/17105214.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式