diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-06-12 12:22:12 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-06-12 12:22:12 -0500 |
| commit | 6be2516140e761b81394792b24a486eb24e72e25 (patch) | |
| tree | 0a775fa798d0c80846bdd8084905bfac1039560d /src/cryptonote_core/blockchain.cpp | |
| parent | 41d04a87b20129c28fcd0381a28d012e4b651d14 (diff) | |
| parent | 6b13976330b6a7d3ebbea160080146c8eb46e1d3 (diff) | |
| download | monzero-core-6be2516140e761b81394792b24a486eb24e72e25.tar.gz monzero-core-6be2516140e761b81394792b24a486eb24e72e25.tar.xz monzero-core-6be2516140e761b81394792b24a486eb24e72e25.zip | |
Merge pull request #3687
6b13976 blockchain: log in DEBUG when a block is found, and where (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_core/blockchain.cpp')
| -rw-r--r-- | src/cryptonote_core/blockchain.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index fbb2a2223..a8565d3f5 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -2282,19 +2282,19 @@ bool Blockchain::have_block(const crypto::hash& id) const if(m_db->block_exists(id)) { - LOG_PRINT_L3("block exists in main chain"); + LOG_PRINT_L2("block " << id << " found in main chain"); return true; } if(m_alternative_chains.count(id)) { - LOG_PRINT_L3("block found in m_alternative_chains"); + LOG_PRINT_L2("block " << id << " found in m_alternative_chains"); return true; } if(m_invalid_blocks.count(id)) { - LOG_PRINT_L3("block found in m_invalid_blocks"); + LOG_PRINT_L2("block " << id << " found in m_invalid_blocks"); return true; } |
