-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
grpclog: refactor to move implementation to grpclog/internal (#7465)
- Loading branch information
Showing
11 changed files
with
365 additions
and
325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
* | ||
* Copyright 2024 gRPC authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
// Package internal contains functionality internal to the grpclog package. | ||
package internal | ||
|
||
// LoggerV2Impl is the logger used for the non-depth log functions. | ||
var LoggerV2Impl LoggerV2 | ||
|
||
// DepthLoggerV2Impl is the logger used for the depth log functions. | ||
var DepthLoggerV2Impl DepthLoggerV2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/* | ||
* | ||
* Copyright 2024 gRPC authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
package internal | ||
|
||
// Logger mimics golang's standard Logger as an interface. | ||
// | ||
// Deprecated: use LoggerV2. | ||
type Logger interface { | ||
Fatal(args ...any) | ||
Fatalf(format string, args ...any) | ||
Fatalln(args ...any) | ||
Print(args ...any) | ||
Printf(format string, args ...any) | ||
Println(args ...any) | ||
} | ||
|
||
// LoggerWrapper wraps Logger into a LoggerV2. | ||
type LoggerWrapper struct { | ||
Logger | ||
} | ||
|
||
// Info logs to INFO log. Arguments are handled in the manner of fmt.Print. | ||
func (l *LoggerWrapper) Info(args ...any) { | ||
l.Logger.Print(args...) | ||
} | ||
|
||
// Infoln logs to INFO log. Arguments are handled in the manner of fmt.Println. | ||
func (l *LoggerWrapper) Infoln(args ...any) { | ||
l.Logger.Println(args...) | ||
} | ||
|
||
// Infof logs to INFO log. Arguments are handled in the manner of fmt.Printf. | ||
func (l *LoggerWrapper) Infof(format string, args ...any) { | ||
l.Logger.Printf(format, args...) | ||
} | ||
|
||
// Warning logs to WARNING log. Arguments are handled in the manner of fmt.Print. | ||
func (l *LoggerWrapper) Warning(args ...any) { | ||
l.Logger.Print(args...) | ||
} | ||
|
||
// Warningln logs to WARNING log. Arguments are handled in the manner of fmt.Println. | ||
func (l *LoggerWrapper) Warningln(args ...any) { | ||
l.Logger.Println(args...) | ||
} | ||
|
||
// Warningf logs to WARNING log. Arguments are handled in the manner of fmt.Printf. | ||
func (l *LoggerWrapper) Warningf(format string, args ...any) { | ||
l.Logger.Printf(format, args...) | ||
} | ||
|
||
// Error logs to ERROR log. Arguments are handled in the manner of fmt.Print. | ||
func (l *LoggerWrapper) Error(args ...any) { | ||
l.Logger.Print(args...) | ||
} | ||
|
||
// Errorln logs to ERROR log. Arguments are handled in the manner of fmt.Println. | ||
func (l *LoggerWrapper) Errorln(args ...any) { | ||
l.Logger.Println(args...) | ||
} | ||
|
||
// Errorf logs to ERROR log. Arguments are handled in the manner of fmt.Printf. | ||
func (l *LoggerWrapper) Errorf(format string, args ...any) { | ||
l.Logger.Printf(format, args...) | ||
} | ||
|
||
// V reports whether verbosity level l is at least the requested verbose level. | ||
func (*LoggerWrapper) V(l int) bool { | ||
// Returns true for all verbose level. | ||
return true | ||
} |
Oops, something went wrong.