Documentation ¶
Overview ¶
* * package glog 将日志直接落地到磁盘,支持每天流动式日志记录 * 对于需要实时展示日志的业务,建议用这个glog库 * 相比logger库基于zap来说,速度相对要慢一点
- 每天流动式日志实现
- 操作日志记录到文件,支持info,error,debug,notice,alert等
- 写日志文件的时候,采用乐观锁方式对文件句柄进行加锁
- 等级参考php Monolog/logger.php
- 日志切割机制参考lumberjack包实现
- json encode采用jsoniter库快速json encode处理
- 支持Debug,Info,Error,Warn等方法
Index ¶
- Constants
- Variables
- func Alter(v interface{}, options map[string]interface{})
- func Critical(v interface{}, options map[string]interface{})
- func Debug(v interface{}, options map[string]interface{})
- func Emergency(v interface{}, options map[string]interface{})
- func Error(v interface{}, options map[string]interface{})
- func FileName(name string)
- func Info(v interface{}, options map[string]interface{})
- func LogSize(n int64)
- func LogSplit(b bool)
- func Notice(v interface{}, options map[string]interface{})
- func RecoverLog()
- func SetLogDir(dir string)
- func SetLogTmZone(timezone string)
- func TraceFileLine(b bool)
- func Warn(v interface{}, options map[string]interface{})
Constants ¶
View Source
const ( EMERGENCY = "emergency" // 严重错误: 导致系统崩溃无法使用 ALTER = "alter" // 警戒性错误: 必须被立即修改的错误 CRITICAL = "critical" // 临界值错误: 超过临界值的错误,例如一天24小时,而输入的是25小时这样 ERR = "error" // 一般错误:比如类型错误,数据库连接不上等等 WARN = "warn" // 警告性错误: 需要发出警告的错误 NOTICE = "notice" // 通知: 程序可以运行但是还不够完美的错误 INFO = "info" // 信息: 程序输出信息 DEBUG = "debug" // 调试: 调试信息 )
日志级别 从上到下,由高到低
Variables ¶
Functions ¶
func Alter ¶ added in v1.9.3
func Alter(v interface{}, options map[string]interface{})
Alter alter log.
func Critical ¶ added in v1.9.3
func Critical(v interface{}, options map[string]interface{})
Critical critical log.
func Debug ¶ added in v1.9.3
func Debug(v interface{}, options map[string]interface{})
Debug debug log.
func Emergency ¶ added in v1.9.3
func Emergency(v interface{}, options map[string]interface{})
Emergency emergency log.
func Error ¶ added in v1.9.3
func Error(v interface{}, options map[string]interface{})
Error error log.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.