一个简单而强大的 golang 日志工具包
English document
go get github.com/phachon/go-logger go get ./...
go 1.8
同步方式
import ( "github.com/phachon/go-logger” ) func main() { logger := go_logger.NewLogger()
logger.Info("this is a info log!") logger.Errorf("this is a error %s log!", "format")
}
异步方式
import ( "github.com/phachon/go-logger” ) func main() { logger := go_logger.NewLogger() logger.SetAsync()
logger.Info("this is a info log!") logger.Errorf("this is a error %s log!", "format") // 程序结束前必须调用 Flush logger.Flush()
多个输出
logger.Detach("console") // 命令行输出配置 consoleConfig := &go_logger.ConsoleConfig{ Color: true, // 命令行输出字符串是否显示颜色 JsonFormat: true, // 命令行输出字符串是否格式化 Format: "" // 如果输出的不是 json 字符串,JsonFormat: false, 自定义输出的格式 } // 添加 console 为 logger 的一个输出 logger.Attach("console", go_logger.LOGGER_LEVEL_DEBUG, consoleConfig) // 文件输出配置 fileConfig := &go_logger.FileConfig { Filename : "./test.log", // 日志输出文件名,不自动存在 // 如果要将单独的日志分离为文件,请配置LealFrimeNem参数。 LevelFileName : map[int]string { logger.LoggerLevel("error"): "./error.log", // Error 级别日志被写入 error .log 文件 logger.LoggerLevel("info"): "./info.log", // Info 级别日志被写入到 info.log 文件中 logger.LoggerLevel("debug"): "./debug.log", // Debug 级别日志被写入到 debug.log 文件中 }, MaxSize : 1024 * 1024, // 文件最大值(KB),默认值0不限 MaxLine : 100000, // 文件最大行数,默认 0 不限制 DateSlice : "d", // 文件根据日期切分, 支持 "Y" (年), "m" (月), "d" (日), "H" (时), 默认 "no", 不切分 JsonFormat: true, // 写入文件的数据是否 json 格式化 Format: "" // 如果写入文件的数据不 json 格式化,自定义日志格式 } // 添加 file 为 logger 的一个输出 logger.Attach("file", go_logger.LOGGER_LEVEL_DEBUG, fileConfig) logger.Info("this is a info log!") logger.Errorf("this is a error %s log!", "format")
你想要自定义日志输出格式 ?
Logger Message
配置 Format 参数 :
consoleConfig := &go_logger.ConsoleConfig{ Format: "%millisecond_format% [%level_string%] %body%" } fileConfig := &go_logger.FileConfig{ Format: "%millisecond_format% [%level_string%] %body%" }
输出结果 :
2018-03-23 14:55:07.003 [Critical] this is a critical log!
你只需要配置参数 Format: “% Logger Message 别名%” 来自定义输出字符串格式
beego/logs : github.com/astaxie/beego/logs
欢迎提交意见和代码,联系信息 phachon@163.com
MIT
Create By phachon@163.com