From 1b902ff2afaf461a95f49fefa6e61a3e47b14e1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Sat, 7 Aug 2021 14:41:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A5=E5=BF=97=E9=85=8D=E7=BD=AE=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0jsonTag?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- logger/config.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/logger/config.go b/logger/config.go index e855857..0b81a10 100644 --- a/logger/config.go +++ b/logger/config.go @@ -43,13 +43,13 @@ const ( // // Date : 3:08 下午 2021/1/2 type RotateLogConfig struct { - TimeIntervalType TimeIntervalType // 日志切割的时间间隔类型 0 - 小时 1 - 天 2 - 月 3 - 年 - TimeInterval time.Duration // 日志切割的时间间隔 - LogPath string // 存储日志的路径 - LogFileName string // 日志文件名 - DivisionChar string // 日志文件拼时间分隔符 - FullLogFormat string // 完整的日志格式 - MaxAge time.Duration // 日志最长保存时间 + TimeIntervalType TimeIntervalType `json:"time_interval_type" yml:"time_interval_type"` // 日志切割的时间间隔类型 0 - 小时 1 - 天 2 - 月 3 - 年 + TimeInterval time.Duration `json:"time_interval" yml:"time_interval"` // 日志切割的时间间隔 + LogPath string `json:"log_path" yml:"log_path"` // 存储日志的路径 + LogFileName string `json:"log_file_name" yml:"log_file_name"` // 日志文件名 + DivisionChar string `json:"division_char" yml:"division_char"` // 日志文件拼时间分隔符 + FullLogFormat string `json:"full_log_format" yml:"full_log_format"` // 完整的日志格式 + MaxAge time.Duration `json:"max_age" yml:"max_age"` // 日志最长保存时间 } // SetRotateLogConfigOption 设置日志切割的选项