mirror of
https://github.com/xxjwxc/public.git
synced 2025-09-26 20:01:19 +08:00
15 lines
208 B
Go
15 lines
208 B
Go
package myredis
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/xxjwxc/public/mylog"
|
|
)
|
|
|
|
type logger struct {
|
|
}
|
|
|
|
func (l *logger) Printf(ctx context.Context, format string, v ...interface{}) {
|
|
mylog.Infof(format, v...)
|
|
}
|