open-im-server/pkg/common/log/zk_logger.go
wangchuxiao cb060ac585 zk
2023-06-11 11:49:54 +08:00

13 lines
186 B
Go

package log
import (
"context"
"fmt"
)
type ZkLogger struct{}
func (l *ZkLogger) Printf(format string, a ...interface{}) {
ZInfo(context.Background(), fmt.Sprintf(format, a...))
}