core/zero: lower log level (#5065)

This commit is contained in:
Caleb Doxsey 2024-04-11 15:31:25 -06:00 committed by GitHub
parent dc7820ea3e
commit ed378af744
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View file

@ -83,7 +83,7 @@ func (svc *Mux) subscribeAndDispatch(ctx context.Context, onConnected func()) (e
log.Ctx(ctx).Debug().Msg("subscribed to connect service")
for {
msg, err := stream.Recv()
log.Ctx(ctx).Info().Interface("msg", msg).Err(err).Msg("receive")
log.Ctx(ctx).Debug().Interface("msg", msg).Err(err).Msg("receive")
if err != nil {
return fmt.Errorf("receive: %w", err)
}