Moving verbose info logging to debug (#2346)
This commit is contained in:
parent
ae36979804
commit
11016b5067
@ -87,7 +87,7 @@ func (ec *ecClient) Put(ctx context.Context, limits []*pb.AddressedOrderLimit, r
|
||||
return nil, nil, Error.New("duplicated nodes are not allowed")
|
||||
}
|
||||
|
||||
zap.S().Infof("Uploading to storage nodes using ErasureShareSize: %d StripeSize: %d RepairThreshold: %d OptimalThreshold: %d",
|
||||
zap.S().Debugf("Uploading to storage nodes using ErasureShareSize: %d StripeSize: %d RepairThreshold: %d OptimalThreshold: %d",
|
||||
rs.ErasureShareSize(), rs.StripeSize(), rs.RepairThreshold(), rs.OptimalThreshold())
|
||||
|
||||
padded := eestream.PadReader(ioutil.NopCloser(data), rs.StripeSize())
|
||||
@ -149,12 +149,12 @@ func (ec *ecClient) Put(ctx context.Context, limits []*pb.AddressedOrderLimit, r
|
||||
elapsed := time.Since(start)
|
||||
more := elapsed * 3 / 2
|
||||
|
||||
zap.S().Infof("Repair threshold (%d nodes) passed in %.2f s. Starting a timer for %.2f s for reaching the success threshold (%d nodes)...",
|
||||
zap.S().Debugf("Repair threshold (%d nodes) passed in %.2f s. Starting a timer for %.2f s for reaching the success threshold (%d nodes)...",
|
||||
rs.RepairThreshold(), elapsed.Seconds(), more.Seconds(), rs.OptimalThreshold())
|
||||
|
||||
timer = time.AfterFunc(more, func() {
|
||||
if ctx.Err() != context.Canceled {
|
||||
zap.S().Infof("Timer expired. Successfully uploaded to %d nodes. Canceling the long tail...", atomic.LoadInt32(&successfulCount))
|
||||
zap.S().Debugf("Timer expired. Successfully uploaded to %d nodes. Canceling the long tail...", atomic.LoadInt32(&successfulCount))
|
||||
cancel()
|
||||
}
|
||||
})
|
||||
@ -333,7 +333,7 @@ func (ec *ecClient) putPiece(ctx, parent context.Context, limit *pb.AddressedOrd
|
||||
if parent.Err() == context.Canceled {
|
||||
zap.S().Infof("Upload to node %s canceled by user.", storageNodeID)
|
||||
} else {
|
||||
zap.S().Infof("Node %s cut from upload due to slow connection.", storageNodeID)
|
||||
zap.S().Debugf("Node %s cut from upload due to slow connection.", storageNodeID)
|
||||
}
|
||||
err = context.Canceled
|
||||
} else if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user