Reduce Log Messages on Level Info (#1313)

This commit is contained in:
Stefan Benten 2019-02-14 13:50:35 +01:00 committed by Michal Niewrzal
parent 9b580c5fb6
commit 661df2a625
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@ func (ps *PieceStore) Delete(ctx context.Context, id PieceID, authorization *pb.
if err != nil {
return err
}
zap.S().Infof("Delete request route summary: %v", reply)
zap.S().Debugf("Delete request route summary: %v", reply)
return nil
}

View File

@ -53,7 +53,7 @@ func (s *StreamWriter) Close() error {
return err
}
zap.S().Infof("Stream close and recv summary: %v", reply)
zap.S().Debugf("Stream close and recv summary: %v", reply)
return nil
}