We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e0c26b commit 7ad8641Copy full SHA for 7ad8641
explorer/lib/explorer/periodically.ex
@@ -84,7 +84,7 @@ defmodule Explorer.Periodically do
84
end
85
86
def process_aggregated_proofs(from_block, to_block) do
87
- "Processing aggregated proofs" |> Logger.debug()
+ "Processing aggregated proofs from #{from_block} to #{to_block}" |> Logger.debug()
88
89
{:ok, proofs} =
90
AlignedProofAggregationService.get_aggregated_proof_event(%{
@@ -127,6 +127,8 @@ defmodule Explorer.Periodically do
127
})
128
end)
129
130
+
131
+ "Done processing aggregated proofs from #{from_block} to #{to_block}" |> Logger.debug()
132
133
134
def process_batches(fromBlock, toBlock) do
0 commit comments