mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
c0f1a1d674
* Use a domain data cache to reduce the number of calls per epoch * fix fakevalidator * Refactor to use a feature flag, use proto.clone, move interceptor to its own file * gofmt * fix comment * tune cache slightly * log if error on domain data Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
32 lines
908 B
Go
32 lines
908 B
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/metadata"
|
|
)
|
|
|
|
// This method logs the gRPC backend as well as request duration when the log level is set to debug
|
|
// or higher.
|
|
func logDebugRequestInfoUnaryInterceptor(ctx context.Context, method string, req, reply interface{}, cc *grpc.ClientConn, invoker grpc.UnaryInvoker, opts ...grpc.CallOption) error {
|
|
// Shortcut when debug logging is not enabled.
|
|
if logrus.GetLevel() < logrus.DebugLevel {
|
|
return invoker(ctx, method, req, reply, cc, opts...)
|
|
}
|
|
|
|
var header metadata.MD
|
|
opts = append(
|
|
opts,
|
|
grpc.Header(&header),
|
|
)
|
|
start := time.Now()
|
|
err := invoker(ctx, method, req, reply, cc, opts...)
|
|
log.WithField("backend", header["x-backend"]).
|
|
WithField("method", method).WithField("duration", time.Now().Sub(start)).
|
|
Debug("gRPC request finished.")
|
|
return err
|
|
}
|