Skip to content

Commit

Permalink
rm load logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrasiuk committed Sep 16, 2024
1 parent 69e91d2 commit ebca852
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/engine/tree/src/tree/streaming_database.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ where
{
fn basic_account(&self, address: Address) -> ProviderResult<Option<Account>> {
let _ = self.sender.send(StateAccess::Account(address));
tracing::info!(target: "engine", %address, "Loading account");
self.inner.basic_account(address)
}

Expand All @@ -41,7 +40,6 @@ where
storage_key: StorageKey,
) -> ProviderResult<Option<StorageValue>> {
let _ = self.sender.send(StateAccess::StorageSlot(account, storage_key));
tracing::info!(target: "engine", address = %account, slot = %storage_key, "Loading slot");
self.inner.storage(account, storage_key)
}

Expand Down

0 comments on commit ebca852

Please sign in to comment.