1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

demote log statement levels

This commit is contained in:
Jeff Becker 2021-11-28 09:56:53 -05:00
parent d7529dafbc
commit ec8d990163
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05
2 changed files with 3 additions and 3 deletions

View file

@ -76,7 +76,7 @@ namespace llarp::iwp
bool success = session->Recv_LL(std::move(pkt));
if (not success and isNewSession)
{
LogWarn("Brand new session failed; removing from pending sessions list");
LogDebug("Brand new session failed; removing from pending sessions list");
m_Pending.erase(from);
}
WakeupPlaintext();

View file

@ -590,7 +590,7 @@ namespace llarp
const ShortHash expected{buf.base};
if (H != expected)
{
LogError(
LogDebug(
m_Parent->PrintableName(),
" keyed hash mismatch ",
H,
@ -954,7 +954,7 @@ namespace llarp
}
else
{
LogWarn("bad intro from ", m_RemoteAddr);
LogDebug("bad intro from ", m_RemoteAddr);
return false;
}
}