Skip to content

Commit

Permalink
mcs: change the log level (#7654)
Browse files Browse the repository at this point in the history
ref #7655

Signed-off-by: Ryan Leung <[email protected]>
  • Loading branch information
rleungx authored Jan 3, 2024
1 parent 5d91220 commit baf4345
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/grpc_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -1331,11 +1331,11 @@ func (s *GrpcServer) RegionHeartbeat(stream pdpb.PD_RegionHeartbeatServer) error
log.Error("failed to get client", zap.Error(err))
continue
}
log.Info("create scheduling forwarding stream", zap.String("forwarded-host", forwardedSchedulingHost))
log.Debug("create scheduling forwarding stream", zap.String("forwarded-host", forwardedSchedulingHost))
forwardSchedulingStream, _, cancel, err = s.createRegionHeartbeatSchedulingStream(stream.Context(), client)
if err != nil {
errRegionHeartbeatStream.Inc()
log.Error("failed to create stream", zap.Error(err))
log.Debug("failed to create stream", zap.Error(err))
continue
}
lastForwardedSchedulingHost = forwardedSchedulingHost
Expand Down

0 comments on commit baf4345

Please sign in to comment.