1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2024-12-14 11:57:51 +00:00

logging: set grpc to use klog for logging

This commit is contained in:
Markus Lehtonen 2021-03-05 14:44:44 +02:00
parent b72b5f751a
commit 8af3a40ca7
3 changed files with 88 additions and 0 deletions

View file

@ -60,6 +60,9 @@ func main() {
klog.Warningf("version not set! Set -ldflags \"-X sigs.k8s.io/node-feature-discovery/pkg/version.version=`git describe --tags --dirty --always`\" during build or run.")
}
// Plug klog into grpc logging infrastructure
utils.ConfigureGrpcKlog()
// Get new NfdMaster instance
instance, err := master.NewNfdMaster(args)
if err != nil {

View file

@ -51,6 +51,9 @@ func main() {
klog.Warningf("version not set! Set -ldflags \"-X sigs.k8s.io/node-feature-discovery/pkg/version.version=`git describe --tags --dirty --always`\" during build or run.")
}
// Plug klog into grpc logging infrastructure
utils.ConfigureGrpcKlog()
// Get new NfdWorker instance
instance, err := worker.NewNfdWorker(args)
if err != nil {

82
pkg/utils/grpc_log.go Normal file
View file

@ -0,0 +1,82 @@
/*
Copyright 2021 The Kubernetes 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 utils
import (
"google.golang.org/grpc/grpclog"
"k8s.io/klog/v2"
)
// ConfigureGrpcKlog wraps grpc logging to use klog
func ConfigureGrpcKlog() {
grpclog.SetLoggerV2(new(grpcLogger))
}
// grpcLogger implements the LoggerV2 interface from grpclog
type grpcLogger struct{}
func (g grpcLogger) Error(args ...interface{}) {
klog.Error(args...)
}
func (g grpcLogger) Errorf(format string, args ...interface{}) {
klog.Errorf(format, args...)
}
func (g grpcLogger) Errorln(args ...interface{}) {
klog.Errorln(args...)
}
func (g grpcLogger) Fatal(args ...interface{}) {
klog.Fatal(args...)
}
func (g grpcLogger) Fatalf(format string, args ...interface{}) {
klog.Fatalf(format, args...)
}
func (g grpcLogger) Fatalln(args ...interface{}) {
klog.Fatalln(args...)
}
func (g grpcLogger) Info(args ...interface{}) {
klog.Info(args...)
}
func (g grpcLogger) Infof(format string, args ...interface{}) {
klog.Infof(format, args...)
}
func (g grpcLogger) Infoln(args ...interface{}) {
klog.Infoln(args...)
}
func (g grpcLogger) Warning(args ...interface{}) {
klog.Warning(args...)
}
func (g grpcLogger) Warningf(format string, args ...interface{}) {
klog.Warningf(format, args...)
}
func (g grpcLogger) Warningln(args ...interface{}) {
klog.Warningln(args...)
}
func (g grpcLogger) V(l int) bool {
return klog.V(klog.Level(l)).Enabled()
}