Merge remote-tracking branch 'origin/master' into debian/buster

This commit is contained in:
Jason Rhinelander 2020-10-01 19:44:20 -03:00
commit 1d526ea667
3 changed files with 3 additions and 4 deletions

View File

@ -359,7 +359,7 @@ namespace llarp
{
m_Stats.totalDroppedTX++;
m_Stats.totalInFlightTX--;
LogWarn("Dropped unacked packet to ", m_RemoteAddr);
LogDebug("Dropped unacked packet to ", m_RemoteAddr);
itr->second.InformTimeout();
itr = m_TXMsgs.erase(itr);
}

View File

@ -214,7 +214,6 @@ namespace llarp
DoCallback(callback, SendStatus::Success);
else
{
LogWarn("Send outbound message handler dropped message");
DoCallback(callback, SendStatus::Congestion);
}
});

View File

@ -78,13 +78,13 @@ namespace llarp
auto path = m_PathSet->GetRandomPathByRouter(remoteIntro.router);
if (!path)
{
LogError(m_Endpoint->Name(), " cannot encrypt and send: no path for intro ", remoteIntro);
LogWarn(m_Endpoint->Name(), " cannot encrypt and send: no path for intro ", remoteIntro);
return;
}
if (!m_DataHandler->GetCachedSessionKeyFor(f->T, shared))
{
LogError(m_Endpoint->Name(), " has no cached session key on session T=", f->T);
LogWarn(m_Endpoint->Name(), " has no cached session key on session T=", f->T);
return;
}