Skip to content

Commit

Permalink
log: remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkAfCod committed Apr 25, 2024
1 parent c3cbea0 commit 72a7e5f
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions hildr-node/src/main/java/io/optimism/l1/BeaconBlobFetcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,16 +145,11 @@ public List<BlobSidecar> getBlobSidecards(String blockId, final List<BigInteger>
return res.getData();
}
if (this.archiverSidecarsMethod != null) {
LOGGER.info(
"blob sidecars may be pruned, try blob archiver sidecars method: blockId = {}, indices = {}, url = {}",
LOGGER.warn(
"blob sidecars may be pruned, try blob archiver sidecars method: blockId = {}, indices = {}",
blockId,
indices,
"%s/%s".formatted(this.archiverSidecarsMethod, postfix));
indices);
var archiverRes = getBlobSidecars("%s/%s".formatted(this.archiverSidecarsMethod, postfix));
LOGGER.info(
"archiverUrl: {}; archiverRes return data: {}",
this.archiverSidecarsMethod,
archiverRes.getData() != null && !archiverRes.getData().isEmpty());
if (archiverRes.getData() != null && !archiverRes.getData().isEmpty()) {
return archiverRes.getData();
}
Expand Down

0 comments on commit 72a7e5f

Please sign in to comment.