Compare commits

...

9 Commits

Author SHA1 Message Date
yuguojian
91f65064ff 更新日志 2025-07-16 10:16:39 +08:00
yuguojian
06d888e8de 日志参数转字符串 2025-07-15 16:17:28 +08:00
yuguojian
f6c7d66376 日志参数转字符串 2025-07-15 15:42:49 +08:00
yuguojian
7f0c64fd8a 日志参数转字符串 2025-07-15 15:26:59 +08:00
yuguojian
093b34f32f 日志参数转字符串 2025-07-14 15:51:53 +08:00
yuguojian
33e119864e 日志参数转字符串 2025-07-14 15:26:10 +08:00
yuguojian
f6a41a5e7c 日志参数转字符串 2025-07-14 14:51:05 +08:00
yuguojian
994ed9e639 更新日志 2025-07-11 00:20:34 +08:00
yuguojian
e2dfb3e5ad 日志参数和结果转对象 2025-07-10 10:18:37 +08:00

View File

@@ -3,10 +3,8 @@ package log
import (
"context"
"fmt"
"github.com/dromara/carbon/v2"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/glog"
"go.uber.org/zap"
"reflect"
)
type LogType = string
@@ -38,8 +36,8 @@ const (
)
type Operator struct {
ID int // 系统ID设置0
OperatorType OperatorType
ID int `json:"id"` // 系统ID设置0
OperatorType OperatorType `json:"operator_type"`
}
type LogInfo struct {
@@ -49,19 +47,20 @@ type LogInfo struct {
Title string `json:"title"` // 必填,标题,做什么事情
Param interface{} `json:"param,omitempty"` // 参数,请求参数,传指针
Result interface{} `json:"result,omitempty"` // 结果返回值传指针如果是报错传err
ErrStr string `json:"err_str,omitempty"` // 错误信息,不用传入,自动记录
At string `json:"at"` // 记录时间,不用传入,自动记录
Timestamp int64 `json:"timestamp"` // 时间戳,不用传入,自动记录
}
type param struct {
Type string `json:"type"`
Value interface{} `json:"value"`
type TempGLog struct {
Time string `json:"Time"`
TraceId string `json:"TraceId"`
Level string `json:"Level"`
Content string `json:"Content"`
}
type result struct {
Type string `json:"type"`
Value interface{} `json:"value"`
type GLog struct {
Time string `json:"Time"`
TraceId string `json:"TraceId"`
Level string `json:"Level"`
Content *LogInfo `json:"Content"`
}
func ZapDebug(logger *zap.Logger, log *LogInfo) {
@@ -95,61 +94,49 @@ func ZapFatal(logger *zap.Logger, log *LogInfo) {
}
func HandleLog(log *LogInfo) {
log.At = carbon.Now().ToDateTimeString()
log.Timestamp = carbon.Now().Timestamp()
// 处理 Param
// 处理 Param
if log.Param != nil {
log.Param = processValue(log.Param)
}
log.Param = processValue(log.Param)
// 处理 Result
if log.Result != nil {
if _, ok := log.Result.(error); ok {
log.ErrStr = fmt.Sprintf("%+v", log.Result)
log.Result = nil
} else {
log.Result = processValue(log.Result)
}
}
log.Result = processValue(log.Result)
}
func GFInfo(ctx context.Context, log *LogInfo) {
func GFInfo(ctx context.Context, g *glog.Logger, log *LogInfo) {
HandleLog(log)
g.Log().Info(ctx, log)
g.Info(ctx, log)
}
func GFWarning(ctx context.Context, log *LogInfo) {
func GFWarning(ctx context.Context, g *glog.Logger, log *LogInfo) {
HandleLog(log)
g.Log().Warning(ctx, log)
g.Warning(ctx, log)
}
func GFError(ctx context.Context, log *LogInfo) {
func GFError(ctx context.Context, g *glog.Logger, log *LogInfo) {
HandleLog(log)
g.Log().Error(ctx, log)
g.Error(ctx, log)
}
func GFDebug(ctx context.Context, log *LogInfo) {
func GFDebug(ctx context.Context, g *glog.Logger, log *LogInfo) {
HandleLog(log)
g.Log().Debug(ctx, log)
g.Debug(ctx, log)
}
func GFPanic(ctx context.Context, log *LogInfo) {
func GFPanic(ctx context.Context, g *glog.Logger, log *LogInfo) {
HandleLog(log)
g.Log().Panic(ctx, log)
g.Panic(ctx, log)
}
func GFFatal(ctx context.Context, log *LogInfo) {
func GFFatal(ctx context.Context, g *glog.Logger, log *LogInfo) {
HandleLog(log)
g.Log().Fatal(ctx, log)
g.Fatal(ctx, log)
}
func (l *LogInfo) GFCommonHandelResult(ctx context.Context, result interface{}, err error) {
func (l *LogInfo) GFCommonHandelResult(ctx context.Context, g *glog.Logger, result interface{}, err error) {
if err != nil {
l.Result = err
GFError(ctx, l)
GFError(ctx, g, l)
} else {
l.Result = result
GFInfo(ctx, l)
GFInfo(ctx, g, l)
}
}
@@ -164,13 +151,8 @@ func (l *LogInfo) ZapCommonHandelResult(logger *zap.Logger, result interface{},
}
func processValue(value interface{}) interface{} {
kind := reflect.TypeOf(value).Kind()
switch kind {
case reflect.Map, reflect.Slice, reflect.Array, reflect.Struct:
// 如果是复杂类型,保持原样
return value
default:
// 对于其他类型,转换为字符串
return param{Type: kind.String(), Value: fmt.Sprintf("%v", value)}
if value == nil {
return ""
}
return fmt.Sprintf("%+v", value)
}