diff options
| author | Thomas Winget <tewinget@gmail.com> | 2015-02-23 18:28:20 -0500 |
|---|---|---|
| committer | Thomas Winget <tewinget@gmail.com> | 2015-02-23 18:28:20 -0500 |
| commit | 0ad0784f46cacfbd5ac00a9de4f1dd3e74ca8f95 (patch) | |
| tree | 2d1911d9425bd56252f57ac231dcf5501227e938 /src | |
| parent | b5796da0fa67269ed218cdd14ef9f3b548fd6507 (diff) | |
| download | monzero-core-0ad0784f46cacfbd5ac00a9de4f1dd3e74ca8f95.tar.gz monzero-core-0ad0784f46cacfbd5ac00a9de4f1dd3e74ca8f95.tar.xz monzero-core-0ad0784f46cacfbd5ac00a9de4f1dd3e74ca8f95.zip | |
Changed log level of debug message -- too spammy
Diffstat (limited to 'src')
| -rw-r--r-- | src/cryptonote_core/BlockchainDB_impl/db_lmdb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/BlockchainDB_impl/db_lmdb.cpp b/src/cryptonote_core/BlockchainDB_impl/db_lmdb.cpp index a09d9331c..feff4a272 100644 --- a/src/cryptonote_core/BlockchainDB_impl/db_lmdb.cpp +++ b/src/cryptonote_core/BlockchainDB_impl/db_lmdb.cpp @@ -805,7 +805,7 @@ bool BlockchainLMDB::block_exists(const crypto::hash& h) const if (get_result == MDB_NOTFOUND) { txn.commit(); - LOG_PRINT_L1("Block with hash " << epee::string_tools::pod_to_hex(h) << " not found in db"); + LOG_PRINT_L3("Block with hash " << epee::string_tools::pod_to_hex(h) << " not found in db"); return false; } else if (get_result) |
