Compare commits

...

2 Commits

Author SHA1 Message Date
Sean 72f795a5c5
Merge pull request #1631 from darcys22/noisy-log
Silency noisy logs
2023-02-15 10:33:41 +11:00
Sean Darcy ef584b575e Silency noisy logs 2023-02-10 16:10:30 +11:00
2 changed files with 3 additions and 3 deletions

View File

@ -1464,7 +1464,7 @@ namespace cryptonote
q = get_quorum(service_nodes::quorum_type::blink, q_height);
if (!q)
{
log::info(logcat, "Don't have a quorum for height {} (yet?), ignoring this blink", q_height);
log::trace(logcat, "Don't have a quorum for height {} (yet?), ignoring this blink", q_height);
no_quorum = true;
break;
}

View File

@ -429,7 +429,7 @@ namespace cryptonote
}
if (context.m_need_blink_sync)
log::info(logcat, "{}Need to synchronized blink signatures", context);
log::debug(logcat, "{}Need to synchronized blink signatures", context);
}
uint64_t target = m_core.get_target_blockchain_height();
@ -1084,7 +1084,7 @@ namespace cryptonote
// so don't drop the connection).
if (!syncing && (!all_okay || bad_blinks))
{
log::info(logcat, "{} verification(s) failed, dropping connection", (!all_okay && bad_blinks ? "Tx and Blink" : !all_okay ? "Tx" : "Blink"));
log::debug(logcat, "{} verification(s) failed, dropping connection", (!all_okay && bad_blinks ? "Tx and Blink" : !all_okay ? "Tx" : "Blink"));
drop_connection(context, false, false);
}