package mylog
import (
"github.com/phachon/go-logger"
)
var Logger *go_logger.Logger
func init() {
Logger = go_logger.NewLogger()
Logger.Detach("console")
consoleConfig := &go_logger.ConsoleConfig{
Format: "%millisecond_format% [%level_string%] [%file%:%line%] %body% ",
}
Logger.Attach("console", go_logger.LOGGER_LEVEL_DEBUG, consoleConfig)
fileConfig := &go_logger.FileConfig{
Filename: "./callcenter.log", // The file name of the logger output, does not exist automatically
// If you want to separate separate logs into files, configure LevelFileName parameters.
DateSlice: "d", // Cut the document by date, support "Y" (year), "m" (month), "d" (day), "H" (hour), default "no".
Format: "%millisecond_format% [%level_string%] [%file%:%line%] %body% ", // JsonFormat is false, logger message written to file format string
}
// add output to the file
Logger.Attach("file", go_logger.LOGGER_LEVEL_DEBUG, fileConfig)
}
日志分割
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 创建脚本 插入定时任务 加入(每天0点执行) 查看定时任务 扩展 crontab日志在这个文件 /var/log/...
- 这一周主要是在写代码吧,没有继续深度学习。内容主要有学会使用Fabric进行部署代码,还有redis的一些操作、p...