feat(app): update
This commit is contained in:
@ -121,28 +121,28 @@ func Error(msg string, fields ...zap.Field) {
|
||||
Log.Error(msg, fields...)
|
||||
}
|
||||
|
||||
func InfoFWithCtx(ctx context.Context, msg string, args ...interface{}) {
|
||||
func InfoFWithCtx(ctx context.Context, msg string, args ...any) {
|
||||
Log.Info(fmt.Sprintf(msg, args...), traceID(ctx)...)
|
||||
}
|
||||
|
||||
func InfoF(msg string, args ...interface{}) {
|
||||
func InfoF(msg string, args ...any) {
|
||||
msg = fmt.Sprintf(msg, args...)
|
||||
Info(msg)
|
||||
}
|
||||
|
||||
func WarnFWithCtx(ctx context.Context, msg string, args ...interface{}) {
|
||||
func WarnFWithCtx(ctx context.Context, msg string, args ...any) {
|
||||
Log.Warn(fmt.Sprintf(msg, args...), traceID(ctx)...)
|
||||
}
|
||||
|
||||
func WarnF(msg string, args ...interface{}) {
|
||||
func WarnF(msg string, args ...any) {
|
||||
Log.Warn(fmt.Sprintf(msg, args...))
|
||||
}
|
||||
|
||||
func ErrorFWithCtx(ctx context.Context, msg string, args ...interface{}) {
|
||||
func ErrorFWithCtx(ctx context.Context, msg string, args ...any) {
|
||||
Log.Warn(fmt.Sprintf(msg, args...), traceID(ctx)...)
|
||||
}
|
||||
|
||||
func ErrorF(msg string, args ...interface{}) {
|
||||
func ErrorF(msg string, args ...any) {
|
||||
Log.Error(fmt.Sprintf(msg, args...))
|
||||
}
|
||||
|
||||
@ -153,15 +153,15 @@ func (g GLog) LogMode(_ logger.LogLevel) logger.Interface {
|
||||
return &g
|
||||
}
|
||||
|
||||
func (g GLog) Info(_ context.Context, msg string, args ...interface{}) {
|
||||
func (g GLog) Info(_ context.Context, msg string, args ...any) {
|
||||
Info(fmt.Sprintf(msg, args...))
|
||||
}
|
||||
|
||||
func (g GLog) Warn(_ context.Context, msg string, args ...interface{}) {
|
||||
func (g GLog) Warn(_ context.Context, msg string, args ...any) {
|
||||
Warn(fmt.Sprintf(msg, args...))
|
||||
}
|
||||
|
||||
func (g GLog) Error(_ context.Context, msg string, args ...interface{}) {
|
||||
func (g GLog) Error(_ context.Context, msg string, args ...any) {
|
||||
Error(fmt.Sprintf(msg, args...))
|
||||
}
|
||||
|
||||
@ -173,7 +173,7 @@ func (g GLog) Trace(_ context.Context, begin time.Time, fc func() (sql string, r
|
||||
Info("gorm callback trace", zap.String("sql", sql), zap.Int64("rows", ra), zap.Error(err))
|
||||
}
|
||||
|
||||
func (g GLog) Printf(msg string, args ...interface{}) {
|
||||
func (g GLog) Printf(msg string, args ...any) {
|
||||
Info(fmt.Sprintf(msg, args...))
|
||||
}
|
||||
|
||||
@ -181,15 +181,15 @@ func (g GLog) Printf(msg string, args ...interface{}) {
|
||||
type CLog struct {
|
||||
}
|
||||
|
||||
func (c CLog) Info(msg string, keysAndValues ...interface{}) {
|
||||
func (c CLog) Info(msg string, keysAndValues ...any) {
|
||||
InfoF(msg, keysAndValues...)
|
||||
}
|
||||
|
||||
// Error logs an error condition.
|
||||
func (c CLog) Error(err error, msg string, keysAndValues ...interface{}) {
|
||||
func (c CLog) Error(err error, msg string, keysAndValues ...any) {
|
||||
ErrorF(msg, keysAndValues...)
|
||||
}
|
||||
|
||||
func (c CLog) Printf(msg string, args ...interface{}) {
|
||||
func (c CLog) Printf(msg string, args ...any) {
|
||||
InfoF(msg, args...)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user