aa4a1f851d
Signed-off-by: Stephen J Day <stephen.day@docker.com>
14 lines
227 B
Go
14 lines
227 B
Go
package log
|
|
|
|
import (
|
|
"context"
|
|
|
|
"google.golang.org/grpc/grpclog"
|
|
)
|
|
|
|
func init() {
|
|
ctx := WithModule(context.Background(), "grpc")
|
|
|
|
// completely replace the grpc logger with the logrus logger.
|
|
grpclog.SetLogger(G(ctx))
|
|
}
|