diff --git a/bcos-executor/src/executive/TransactionExecutive.cpp b/bcos-executor/src/executive/TransactionExecutive.cpp index ae458cfe38..83f801b81e 100644 --- a/bcos-executor/src/executive/TransactionExecutive.cpp +++ b/bcos-executor/src/executive/TransactionExecutive.cpp @@ -1387,7 +1387,7 @@ void TransactionExecutive::setPrecompiled(std::shared_ptr _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)) diff --git a/bcos-table/src/KeyPageStorage.cpp b/bcos-table/src/KeyPageStorage.cpp index a898169d2b..64707b2159 100644 --- a/bcos-table/src/KeyPageStorage.cpp +++ b/bcos-table/src/KeyPageStorage.cpp @@ -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(); newData->table = table; newData->key = key;