Skip to content

Commit

Permalink
Merge branch 'release-3.10.2' into release-3.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kyonRay authored Sep 10, 2024
2 parents b01d677 + 85ed1b0 commit 51aa908
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bcos-executor/src/executive/TransactionExecutive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1387,7 +1387,7 @@ void TransactionExecutive::setPrecompiled(std::shared_ptr<PrecompiledMap> _preco

void TransactionExecutive::revert()
{
EXECUTOR_BLK_LOG(INFO, m_blockContext.number())
EXECUTOR_BLK_LOG(DEBUG, m_blockContext.number())
<< "Revert transaction" << LOG_KV("contextID", m_contextID) << LOG_KV("seq", m_seq);

if (m_blockContext.features().get(ledger::Features::Flag::bugfix_revert))
Expand Down
4 changes: 2 additions & 2 deletions bcos-table/src/KeyPageStorage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -847,8 +847,8 @@ auto KeyPageStorage::setEntryToPage(std::string table, std::string key, Entry en
{
// table is delete to empty, insert a new key
// which is an old pageKey then will read the wrong page
KeyPage_LOG(INFO) << LOG_DESC("empty table") << LOG_KV("table", table)
<< LOG_KV("key", toHex(key));
KeyPage_LOG(DEBUG) << LOG_DESC("empty table") << LOG_KV("table", table)
<< LOG_KV("key", toHex(key));
auto newData = std::make_shared<Data>();
newData->table = table;
newData->key = key;
Expand Down

0 comments on commit 51aa908

Please sign in to comment.