Files
open-im-server/pkg/common/log/zk_logger.go
T

13 lines
186 B
Go
Raw Normal View History

2023-06-11 11:49:54 +08:00
package log
import (
"context"
"fmt"
)
type ZkLogger struct{}
func (l *ZkLogger) Printf(format string, a ...interface{}) {
ZInfo(context.Background(), fmt.Sprintf(format, a...))
}