Documentation ¶
Index ¶
- type ApiSLog
- type ApiSLogConfig
- type ApiSLogFun
- type ConfigGinCustomClient
- type GinClient
- type GinClientConfig
- type GinClientFun
- type GinCustomClient
- type GinCustomClientGinRecordOperation
- type LoggerOperation
- func (l *LoggerOperation) Debug(msg any)
- func (l *LoggerOperation) DebugContext(ctx context.Context, msg string, args ...any)
- func (l *LoggerOperation) Debugf(template string, args ...any)
- func (l *LoggerOperation) Error(msg any)
- func (l *LoggerOperation) ErrorContext(ctx context.Context, msg string, args ...any)
- func (l *LoggerOperation) Errorf(template string, args ...any)
- func (l *LoggerOperation) Info(msg any)
- func (l *LoggerOperation) InfoContext(ctx context.Context, msg string, args ...any)
- func (l *LoggerOperation) Infof(template string, args ...any)
- func (l *LoggerOperation) Warn(msg any)
- func (l *LoggerOperation) WarnContext(ctx context.Context, msg string, args ...any)
- func (l *LoggerOperation) Warnf(template string, args ...any)
- type SLog
- type SLogConfig
- type SLogFun
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApiSLog ¶ added in v1.0.162
type ApiSLog struct {
// contains filtered or unexported fields
}
func NewApiSlog ¶ added in v1.0.162
func NewApiSlog(ctx context.Context, config *ApiSLogConfig) *ApiSLog
func (*ApiSLog) Middleware ¶ added in v1.0.162
Middleware 中间件
func (*ApiSLog) MiddlewareCustom ¶ added in v1.0.162
MiddlewareCustom 中间件
type ApiSLogConfig ¶ added in v1.0.162
type ApiSLogFun ¶ added in v1.0.162
type ApiSLogFun func() *ApiSLog
type ConfigGinCustomClient ¶ added in v1.0.113
type GinClient ¶ added in v1.0.47
type GinClient struct {
// contains filtered or unexported fields
}
GinClient 框架
func NewGinClient ¶ added in v1.0.47
func NewGinClient(ctx context.Context, config *GinClientConfig) (*GinClient, error)
NewGinClient 创建框架实例化
func (*GinClient) ConfigSLogClientFun ¶ added in v1.0.163
ConfigSLogClientFun 日志配置
func (*GinClient) Middleware ¶ added in v1.0.52
func (c *GinClient) Middleware() gin.HandlerFunc
Middleware 中间件
type GinClientConfig ¶ added in v1.0.52
GinClientConfig 框架实例配置
type GinCustomClient ¶ added in v1.0.113
type GinCustomClient struct {
// contains filtered or unexported fields
}
func NewGinCustomClient ¶ added in v1.0.113
func NewGinCustomClient(ctx context.Context, config *ConfigGinCustomClient) (*GinCustomClient, error)
func (*GinCustomClient) ConfigSLogClientFun ¶ added in v1.0.164
func (c *GinCustomClient) ConfigSLogClientFun(sLogFun SLogFun)
ConfigSLogClientFun 日志配置
func (*GinCustomClient) GinRecord ¶ added in v1.0.113
func (c *GinCustomClient) GinRecord(ginCtx *gin.Context) *GinCustomClientGinRecordOperation
GinRecord 记录日志
type GinCustomClientGinRecordOperation ¶ added in v1.0.113
type GinCustomClientGinRecordOperation struct {
// contains filtered or unexported fields
}
func (*GinCustomClientGinRecordOperation) CreateData ¶ added in v1.0.113
func (o *GinCustomClientGinRecordOperation) CreateData()
func (*GinCustomClientGinRecordOperation) CreateDataNoError ¶ added in v1.0.113
func (o *GinCustomClientGinRecordOperation) CreateDataNoError()
func (*GinCustomClientGinRecordOperation) CustomInfo ¶ added in v1.0.113
func (o *GinCustomClientGinRecordOperation) CustomInfo(customId any, customType any, customContent any) *GinCustomClientGinRecordOperation
type LoggerOperation ¶ added in v1.0.162
type LoggerOperation struct {
// contains filtered or unexported fields
}
func (*LoggerOperation) Debug ¶ added in v1.0.162
func (l *LoggerOperation) Debug(msg any)
Debug logs at LevelDebug.
func (*LoggerOperation) DebugContext ¶ added in v1.0.162
func (l *LoggerOperation) DebugContext(ctx context.Context, msg string, args ...any)
DebugContext logs at LevelDebug with the given context.
func (*LoggerOperation) Debugf ¶ added in v1.0.162
func (l *LoggerOperation) Debugf(template string, args ...any)
Debugf formats the message according to the format specifier
func (*LoggerOperation) Error ¶ added in v1.0.162
func (l *LoggerOperation) Error(msg any)
Error logs at LevelError.
func (*LoggerOperation) ErrorContext ¶ added in v1.0.162
func (l *LoggerOperation) ErrorContext(ctx context.Context, msg string, args ...any)
ErrorContext logs at LevelError with the given context.
func (*LoggerOperation) Errorf ¶ added in v1.0.162
func (l *LoggerOperation) Errorf(template string, args ...any)
Errorf formats the message according to the format specifier
func (*LoggerOperation) Info ¶ added in v1.0.162
func (l *LoggerOperation) Info(msg any)
Info logs at LevelInfo.
func (*LoggerOperation) InfoContext ¶ added in v1.0.162
func (l *LoggerOperation) InfoContext(ctx context.Context, msg string, args ...any)
InfoContext logs at LevelInfo with the given context.
func (*LoggerOperation) Infof ¶ added in v1.0.162
func (l *LoggerOperation) Infof(template string, args ...any)
Infof formats the message according to the format specifier
func (*LoggerOperation) Warn ¶ added in v1.0.162
func (l *LoggerOperation) Warn(msg any)
Warn logs at LevelWarn.
func (*LoggerOperation) WarnContext ¶ added in v1.0.162
func (l *LoggerOperation) WarnContext(ctx context.Context, msg string, args ...any)
func (*LoggerOperation) Warnf ¶ added in v1.0.162
func (l *LoggerOperation) Warnf(template string, args ...any)
Warnf formats the message according to the format specifier
type SLog ¶ added in v1.0.162
type SLog struct {
// contains filtered or unexported fields
}
func (*SLog) WithLogger ¶ added in v1.0.162
func (sl *SLog) WithLogger() *LoggerOperation
WithLogger 跟踪编号
func (*SLog) WithTraceId ¶ added in v1.0.162
func (sl *SLog) WithTraceId(ctx context.Context) *LoggerOperation
WithTraceId 跟踪编号
func (*SLog) WithTraceIdStr ¶ added in v1.0.162
func (sl *SLog) WithTraceIdStr(traceId string) *LoggerOperation
WithTraceIdStr 跟踪编号
type SLogConfig ¶ added in v1.0.162
type SLogConfig struct { LogPath string // 日志文件路径 LogName string // 日志文件名 MaxSize int // 单位为MB,默认为512MB MaxBackups int // 保留旧文件的最大个数 MaxAge int // 文件最多保存多少天 0=不删除 LocalTime bool // 采用本地时间 Compress bool // 是否压缩日志 JsonFormat bool // 是否输出为json格式 ShowLine bool // 显示代码行 LogSaveFile bool // 是否保存到文件 LogInConsole bool // 是否同时输出到控制台 }