Skip to content

Commit

Permalink
Automated rollback of commit 8108815.
Browse files Browse the repository at this point in the history
*** Reason for rollback ***

The root cause has been identified.

*** Original change description ***

Add some logging...

PiperOrigin-RevId: 602295357
Change-Id: Iec50f8bdd9f49e7a733c32246191d3377610fbb4
  • Loading branch information
coeuvre authored and copybara-github committed Jan 29, 2024
1 parent dccdffd commit f9718f9
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -359,12 +359,8 @@ private Single<TransferResult> prefetchFile(

return RxUtils.toTransferResult(result);
} catch (IOException e) {
// TODO(b/320630578): Temporary logging which might help to catch the root cause.
logger.atWarning().withCause(e).log("Failed to prefetch file %s", input.getExecPathString());
return Single.just(TransferResult.error(e));
} catch (InterruptedException e) {
// TODO(b/320630578): Temporary logging which might help to catch the root cause.
logger.atWarning().withCause(e).log("Failed to prefetch file %s", input.getExecPathString());
return Single.just(TransferResult.interrupted());
}
}
Expand Down

0 comments on commit f9718f9

Please sign in to comment.