golang log模块之log4go使用介绍
1. 描述在go语言中,自身已经集成了一定log模块,开发者可以使用go语言自身的log包(import “log”)。也有不少对自身log的开源封装。对于一些简单的开发,自身的log模块就已经足够应付。但是对一些大型,复杂的开发,log需要分门别类的输出,或者通过网络进行输出,自身log模块将难以应对。 当前也有一些比较重量级的log模块,比如logrus,可以实现比较复杂的功能。这里介绍一个轻量级的log模块——log4go. 源于google的一项log工程,官方已经停止维护更新,这里对他进行了重构,使用起来也特别简单,就像自身的log模块一样。 2. 特点
使用方式首先,下载源码.
导入进工程:
源代码也可以直接从github仓库下载使用。 使用示例这里使用json配置文件,配置文件是可选的,如果不配置,默认输出到终端。 {
"console": {
"enable": true,// wether output the log
"level": "FINE" // log level: FINE,DEBUG,TRACE,INFO,WARNING,ERROR,CRITICAL
},"files": [{
"enable": true,"level": "DEBUG","filename":"./test.log","category": "Test",// different category log to different files
"pattern": "[%D %T] [%C] [%L] (%S) %M" // log output formmat
},{
"enable": false,"filename":"rotate_test.log","category": "TestRotate","pattern": "[%D %T] [%C] [%L] (%S) %M","rotate": true,// wether rotate the log
"maxsize": "500M","maxlines": "10K","daily": true
}],"sockets": [{
"enable": false,"category": "TestSocket","addr": "127.0.0.1:12124","protocol":"udp"
}]
}
Code example: package main
import (
log "github.com/jeanphorn/log4go"
)
func main() {
// load config file,it's optional
// or log.LoadConfiguration("./example.json","json")
// config file could be json or xml
log.LoadConfiguration("./example.json")
log.LOGGER("Test").Info("category Test info test ...")
log.LOGGER("Test").Info("category Test info test message: %s","new test msg")
log.LOGGER("Test").Debug("category Test debug test ...")
// Other category not exist,test
log.LOGGER("Other").Debug("category Other debug test ...")
// socket log test
log.LOGGER("TestSocket").Debug("category TestSocket debug test ...")
// original log4go test
log.Info("nomal info test ...")
log.Debug("nomal debug test ...")
log.Close()
}
输出样式:
4. 感谢Thanks alecthomas for providing the original resource. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |