Apply .gitignore rules

This commit is contained in:
皮蛋13361098506
2025-01-06 16:21:36 +08:00
parent 1b77f62820
commit ccd2c530cf
580 changed files with 69806 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
package logUtil
// ILog
// @description: 日志接口
type ILog interface {
// InfoLog
// @description: 信息日志记录
// parameter:
// @format:日志格式
// @args:参数列表
// return:
InfoLog(format string, args ...interface{})
// DebugLog
// @description: 调试日志记录
// parameter:
// @format:日志格式
// @args:参数列表
// return:
DebugLog(format string, args ...interface{})
// WarnLog
// @description: 警告日志记录
// parameter:
// @format:日志格式
// @args:参数列表
// return:
WarnLog(format string, args ...interface{})
// ErrorLog
// @description: 错误日志记录
// parameter:
// @format:日志格式
// @args:参数列表
// return:
ErrorLog(format string, args ...interface{})
// FatalLog
// @description: 致命错误日志记录
// parameter:
// @format:日志格式
// @args:参数列表
// return:
FatalLog(format string, args ...interface{})
// CloseLog
// @description: 关闭日志
// parameter:
// @waitFinish:是否等待日志
// return:
CloseLog(waitFinish bool)
}