moved non-critical warnings and errors to log level 1

This commit is contained in:
fluffypony 2014-09-09 11:32:00 +02:00
parent 4290c78160
commit cf5a8b1d6c
12 changed files with 108 additions and 107 deletions

View file

@ -95,7 +95,7 @@ int levin_client_impl::invoke(int command, const std::string& in_buff, std::stri
if(head.m_signature!=LEVIN_SIGNATURE)
{
LOG_PRINT_L0("Signature missmatch in response");
LOG_PRINT_L1("Signature missmatch in response");
return -1;
}
@ -156,7 +156,7 @@ inline
if(head.m_signature!=LEVIN_SIGNATURE)
{
LOG_PRINT_L0("Signature missmatch in response");
LOG_PRINT_L1("Signature missmatch in response");
return -1;
}
@ -191,4 +191,4 @@ inline
}
}
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------