mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
77f8c3f8f3
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.66.2 to 1.67.0. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](https://github.com/grpc/grpc-go/compare/v1.66.2...v1.67.0) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
88 lines
2.6 KiB
Go
88 lines
2.6 KiB
Go
/*
|
|
*
|
|
* 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(int) bool {
|
|
// Returns true for all verbose level.
|
|
return true
|
|
}
|