This commit is contained in:
wangchuxiao
2023-06-11 11:49:54 +08:00
parent 931991f926
commit cb060ac585
4 changed files with 24 additions and 8 deletions
+12
View File
@@ -0,0 +1,12 @@
package log
import (
"context"
"fmt"
)
type ZkLogger struct{}
func (l *ZkLogger) Printf(format string, a ...interface{}) {
ZInfo(context.Background(), fmt.Sprintf(format, a...))
}