Skip to content

Commit

Permalink
remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
wenlinlee committed Dec 25, 2023
1 parent 324dda8 commit e4610ac
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -556,10 +556,7 @@ void BalancePrecompiled::listCaller(
auto entry = table->getRow(it);
if (entry && entry->get() == "1")
{
addresses.push_back(Address(it));
PRECOMPILED_LOG(DEBUG) << BLOCK_NUMBER(blockContext.number())
<< LOG_BADGE("BalancePrecompiled") << LOG_DESC("listCaller")
<< LOG_KV("caller", it) << LOG_KV("address", Address(it).hex());
addresses.emplace_back(Address(it));
}
}
PRECOMPILED_LOG(INFO) << BLOCK_NUMBER(blockContext.number()) << LOG_BADGE("BalancePrecompiled")
Expand Down

0 comments on commit e4610ac

Please sign in to comment.