aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_protocol
diff options
context:
space:
mode:
authorfluffypony <ric@spagni.net>2014-09-09 11:32:00 +0200
committerfluffypony <ric@spagni.net>2014-09-09 11:32:00 +0200
commitcf5a8b1d6c3df615641e81328bb3d8cf80cd70e3 (patch)
tree7a1140728c5c5becac26e7b90f57d34d278c2d5e /src/cryptonote_protocol
parentbuild number increase after release (diff)
downloadmonero-cf5a8b1d6c3df615641e81328bb3d8cf80cd70e3.tar.xz
moved non-critical warnings and errors to log level 1
Diffstat (limited to 'src/cryptonote_protocol')
-rw-r--r--src/cryptonote_protocol/cryptonote_protocol_handler.inl10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler.inl b/src/cryptonote_protocol/cryptonote_protocol_handler.inl
index 1ee0b9e81..19ad74368 100644
--- a/src/cryptonote_protocol/cryptonote_protocol_handler.inl
+++ b/src/cryptonote_protocol/cryptonote_protocol_handler.inl
@@ -225,7 +225,7 @@ namespace cryptonote
m_core.handle_incoming_tx(*tx_blob_it, tvc, true);
if(tvc.m_verifivation_failed)
{
- LOG_PRINT_CCONTEXT_L0("Block verification failed: transaction verification failed, dropping connection");
+ LOG_PRINT_CCONTEXT_L1("Block verification failed: transaction verification failed, dropping connection");
m_p2p->drop_connection(context);
return 1;
}
@@ -238,7 +238,7 @@ namespace cryptonote
m_core.resume_mine();
if(bvc.m_verifivation_failed)
{
- LOG_PRINT_CCONTEXT_L0("Block verification failed, dropping connection");
+ LOG_PRINT_CCONTEXT_L1("Block verification failed, dropping connection");
m_p2p->drop_connection(context);
return 1;
}
@@ -272,7 +272,7 @@ namespace cryptonote
m_core.handle_incoming_tx(*tx_blob_it, tvc, false);
if(tvc.m_verifivation_failed)
{
- LOG_PRINT_CCONTEXT_L0("Tx verification failed, dropping connection");
+ LOG_PRINT_CCONTEXT_L1("Tx verification failed, dropping connection");
m_p2p->drop_connection(context);
return 1;
}
@@ -404,13 +404,13 @@ namespace cryptonote
if(bvc.m_verifivation_failed)
{
- LOG_PRINT_CCONTEXT_L0("Block verification failed, dropping connection");
+ LOG_PRINT_CCONTEXT_L1("Block verification failed, dropping connection");
m_p2p->drop_connection(context);
return 1;
}
if(bvc.m_marked_as_orphaned)
{
- LOG_PRINT_CCONTEXT_L0("Block received at sync phase was marked as orphaned, dropping connection");
+ LOG_PRINT_CCONTEXT_L1("Block received at sync phase was marked as orphaned, dropping connection");
m_p2p->drop_connection(context);
return 1;
}