Correct log level for 'Could not send a chunked response' (#12562)

Co-authored-by: Radosław Kapka <rkapka@wp.pl>
This commit is contained in:
Kevin Wood 2023-07-02 17:58:12 -05:00 committed by GitHub
parent c45cb7e188
commit faa0a2c4cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,7 +139,7 @@ func (s *Service) writeBlockBatchToStream(ctx context.Context, batch blockBatch,
continue continue
} }
if chunkErr := s.chunkBlockWriter(stream, b); chunkErr != nil { if chunkErr := s.chunkBlockWriter(stream, b); chunkErr != nil {
log.WithError(chunkErr).Error("Could not send a chunked response") log.WithError(chunkErr).Debug("Could not send a chunked response")
return chunkErr return chunkErr
} }
} }