diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-08-15 17:27:48 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-08-15 17:27:48 -0500 |
| commit | 2530dc6710be39268ca306a66e5c7b546098dae3 (patch) | |
| tree | 7f4af6ef09ccd41da1999647a62fdd92a83db075 /src | |
| parent | e7328ed5b7a7dedf491559caff4f41dc45d9e0f8 (diff) | |
| parent | be02eb93899ff8db908b379d22a01450500e5214 (diff) | |
| download | monzero-core-2530dc6710be39268ca306a66e5c7b546098dae3.tar.gz monzero-core-2530dc6710be39268ca306a66e5c7b546098dae3.tar.xz monzero-core-2530dc6710be39268ca306a66e5c7b546098dae3.zip | |
Merge pull request #4161
be02eb9 db_lmdb: demote the 'batch already enabled' log, it's harmless (moneromooo-monero)
Diffstat (limited to 'src')
| -rw-r--r-- | src/blockchain_db/lmdb/db_lmdb.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/blockchain_db/lmdb/db_lmdb.cpp b/src/blockchain_db/lmdb/db_lmdb.cpp index a6eb3d880..627038ca7 100644 --- a/src/blockchain_db/lmdb/db_lmdb.cpp +++ b/src/blockchain_db/lmdb/db_lmdb.cpp @@ -2985,10 +2985,10 @@ void BlockchainLMDB::set_batch_transactions(bool batch_transactions) LOG_PRINT_L3("BlockchainLMDB::" << __func__); if ((batch_transactions) && (m_batch_transactions)) { - LOG_PRINT_L0("WARNING: batch transaction mode already enabled, but asked to enable batch mode"); + MINFO("batch transaction mode already enabled, but asked to enable batch mode"); } m_batch_transactions = batch_transactions; - LOG_PRINT_L3("batch transactions " << (m_batch_transactions ? "enabled" : "disabled")); + MINFO("batch transactions " << (m_batch_transactions ? "enabled" : "disabled")); } // return true if we started the txn, false if already started |
