123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- package internal
- import (
- "github.com/wuntsong-org/go-zero-plus/core/logx"
- "google.golang.org/grpc/grpclog"
- )
- // because grpclog.errorLog is not exported, we need to define our own.
- const errorLevel = 2
- // A Logger is a rpc logger.
- type Logger struct{}
- func init() {
- grpclog.SetLoggerV2(new(Logger))
- }
- // Error logs the given args into error log.
- func (l *Logger) Error(args ...any) {
- logx.Error(args...)
- }
- // Errorf logs the given args with format into error log.
- func (l *Logger) Errorf(format string, args ...any) {
- logx.Errorf(format, args...)
- }
- // Errorln logs the given args into error log with newline.
- func (l *Logger) Errorln(args ...any) {
- logx.Error(args...)
- }
- // Fatal logs the given args into error log.
- func (l *Logger) Fatal(args ...any) {
- logx.Error(args...)
- }
- // Fatalf logs the given args with format into error log.
- func (l *Logger) Fatalf(format string, args ...any) {
- logx.Errorf(format, args...)
- }
- // Fatalln logs args into error log with newline.
- func (l *Logger) Fatalln(args ...any) {
- logx.Error(args...)
- }
- // Info ignores the grpc info logs.
- func (l *Logger) Info(args ...any) {
- // ignore builtin grpc info
- }
- // Infoln ignores the grpc info logs.
- func (l *Logger) Infoln(args ...any) {
- // ignore builtin grpc info
- }
- // Infof ignores the grpc info logs.
- func (l *Logger) Infof(format string, args ...any) {
- // ignore builtin grpc info
- }
- // V checks if meet required log level.
- func (l *Logger) V(v int) bool {
- return v >= errorLevel
- }
- // Warning ignores the grpc warning logs.
- func (l *Logger) Warning(args ...any) {
- // ignore builtin grpc warning
- }
- // Warningf ignores the grpc warning logs.
- func (l *Logger) Warningf(format string, args ...any) {
- // ignore builtin grpc warning
- }
- // Warningln ignores the grpc warning logs.
- func (l *Logger) Warningln(args ...any) {
- // ignore builtin grpc warning
- }
|