diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-14 18:54:41 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-14 18:56:39 +0000 |
| commit | c488eca5e83b537311e3229bb17f93a7b7de9429 (patch) | |
| tree | df8ed3d000fd2f11a306451cc9e3fd2f40263d41 /src | |
| parent | 3f171b931f2394ba35edf717762d773cc3dd9b4d (diff) | |
| download | monzero-core-c488eca5e83b537311e3229bb17f93a7b7de9429.tar.gz monzero-core-c488eca5e83b537311e3229bb17f93a7b7de9429.tar.xz monzero-core-c488eca5e83b537311e3229bb17f93a7b7de9429.zip | |
hardfork: tone down some logs
Diffstat (limited to 'src')
| -rw-r--r-- | src/cryptonote_basic/hardfork.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cryptonote_basic/hardfork.cpp b/src/cryptonote_basic/hardfork.cpp index 9b2434970..33188e66d 100644 --- a/src/cryptonote_basic/hardfork.cpp +++ b/src/cryptonote_basic/hardfork.cpp @@ -191,10 +191,10 @@ void HardFork::init() } catch (...) { populate = true; } if (populate) { - LOG_PRINT_L0("The DB has no hard fork info, reparsing from start"); + MINFO("The DB has no hard fork info, reparsing from start"); height = 1; } - LOG_PRINT_L1("reorganizing from " << height); + MDEBUG("reorganizing from " << height); if (populate) { reorganize_from_chain_height(height); // reorg will not touch the genesis block, use this as a flag for populating done @@ -203,7 +203,7 @@ void HardFork::init() else { rescan_from_chain_height(height); } - LOG_PRINT_L1("reorganization done"); + MDEBUG("reorganization done"); } uint8_t HardFork::get_block_version(uint64_t height) const |
