Commit 82f2cd5e authored by Zahoor Mohamed's avatar Zahoor Mohamed Committed by GitHub

fixed redundent debug statements (#272)

* fixed redundent debug statements
Co-authored-by: default avataracud <12988138+acud@users.noreply.github.com>
parent dcfd6e7a
...@@ -96,7 +96,7 @@ func (s *Service) chunksWorker() { ...@@ -96,7 +96,7 @@ func (s *Service) chunksWorker() {
// for now ignoring the receipt and checking only for error // for now ignoring the receipt and checking only for error
_, err = s.pushSyncer.PushChunkToClosest(ctx, ch) _, err = s.pushSyncer.PushChunkToClosest(ctx, ch)
if err != nil { if err != nil {
s.logger.Errorf("pusher: error while sending chunk or receiving receipt: %v", err) s.logger.Debugf("pusher: error while sending chunk or receiving receipt: %v", err)
continue continue
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment