@@ -654,7 +654,7 @@ func (b *BackoffHandler) Exec(ctx context.Context, proofLocator Locator,
654654 if err != nil {
655655 return err
656656 }
657- log .Infof ("Starting proof transfer backoff procedure for proof " +
657+ log .Infof ("Starting proof transfer backoff procedure " +
658658 "(transfer_type=%s, locator_hash=%x)" , transferType ,
659659 locatorHash [:])
660660
@@ -710,7 +710,7 @@ func (b *BackoffHandler) Exec(ctx context.Context, proofLocator Locator,
710710 )
711711 subscriberEvent (waitEvent )
712712
713- log .Debugf ("Proof delivery failed with error. Backing off. " +
713+ log .Debugf ("Proof transfer failed with error. Backing off. " +
714714 "(transfer_type=%s, locator_hash=%x, backoff=%s, " +
715715 "attempt=%d): %v" ,
716716 transferType , locatorHash [:], backoff , i , errExec )
@@ -742,7 +742,7 @@ func (b *BackoffHandler) wait(ctx context.Context, wait time.Duration) error {
742742 case <- time .After (wait ):
743743 return nil
744744 case <- ctx .Done ():
745- return fmt .Errorf ("context canceled " )
745+ return fmt .Errorf ("back off handler context done " )
746746 }
747747}
748748
@@ -1423,8 +1423,8 @@ func (c *UniverseRpcCourier) ReceiveProof(ctx context.Context,
14231423 err := c .ensureConnect (ctx )
14241424 if err != nil {
14251425 return fmt .Errorf ("unable to connect to " +
1426- "courier service during delivery " +
1427- "attempt: %w" , err )
1426+ "universe RPC courier service during " +
1427+ "recieve attempt: %w" , err )
14281428 }
14291429
14301430 // Retrieve proof from courier.
0 commit comments