It appears that GCP Cloud Logging cannot handle the volume of logs we're throwing at it... full text search slows to a crawl (LOL) Reduce log level until we can move to something else. commit-id:b71c3467
@@ -85,7 +85,7 @@ func (s *Telemetry) WrapLogger(logger *zap.Logger) *zap.Logger {
tc := zapcore.NewCore(
s.encoder,
zapcore.AddSync(ioutil.Discard),
- zap.DebugLevel,
+ zap.InfoLevel,
)
return logger.WithOptions(zap.WrapCore(func(core zapcore.Core) zapcore.Core {