1 Star 0 Fork 0

瑞哥/util

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
init.go 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
瑞哥 提交于 2023-03-04 23:26 . 更新到go1.20.x
package rlog
import "time"
var curYear = 0
func init() {
curYear = time.Now().Year()
}
const (
logFileModel = 0660
defaultLogMaxSize = 1024 * 1024 * 10
)
type Level byte
const (
LevelDebug = iota
LevelInfo
LevelSuccess
LevelWarn
LevelError
LevelPanic
levelPrintAll = 99
LevelDisable = 100
)
type TimeFormat string
const (
// TimeFormatDefault 输出日志,前面时间的格式
TimeFormatDefault TimeFormat = `2006/01/02·15:04:05.000-0700`
TimeFormatYMDHMSmsZ TimeFormat = `2006/01/02·15:04:05.000-0700`
TimeFormatYMDHMSZ TimeFormat = `2006/01/02·15:04:05-0700`
TimeFormatYMDHMS TimeFormat = `2006/01/02·15:04:05`
TimeFormatYMDHMSms TimeFormat = `2006/01/02·15:04:05.000`
TimeFormatMDHMSmsZ TimeFormat = `01/02·15:04:05.000-0700`
TimeFormatMDHMSZ TimeFormat = `01/02·15:04:05-0700`
TimeFormatMDHMS TimeFormat = `01/02·15:04:05`
TimeFormatMDHMSms TimeFormat = `01/02·15:04:05.000`
TimeFormatHMSmsZ TimeFormat = `15:04:05.000-0700`
TimeFormatHMSZ TimeFormat = `15:04:05-0700`
TimeFormatHMS TimeFormat = `15:04:05`
TimeFormatHMSms TimeFormat = `15:04:05.000`
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ruige_fun/util.git
git@gitee.com:ruige_fun/util.git
ruige_fun
util
util
v0.0.38

搜索帮助