Skip to content

Commit

Permalink
fix: adjust printed unit on store_account_balance log (#1368)
Browse files Browse the repository at this point in the history
  • Loading branch information
sborrazas committed May 31, 2023
1 parent 11d53ac commit cc601f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/ae_mdw/sync/async_tasks/store_account_balance.ex
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ defmodule AeMdw.Sync.AsyncTasks.StoreAccountBalance do
done_fn.()

if time_delta / @milisecs > @log_threshold_ms do
Log.info("[store_account_balance] #{inspect(block_index)} after #{time_delta / @milisecs}s")
Log.info(
"[store_account_balance] #{inspect(block_index)} after #{time_delta / @milisecs}ms"
)
end

:ok
Expand Down

0 comments on commit cc601f1

Please sign in to comment.