Browse Source

logging fixes

pull/2014/head
Vort 5 months ago
parent
commit
adba3987f8
  1. 2
      libi2pd/NTCP2.cpp
  2. 2
      libi2pd/RouterInfo.cpp
  3. 2
      libi2pd/SSU2Session.cpp

2
libi2pd/NTCP2.cpp

@ -381,7 +381,7 @@ namespace transport @@ -381,7 +381,7 @@ namespace transport
if (remoteIdentity)
{
LogPrint (eLogDebug, "NTCP2: Session with ", GetRemoteEndpoint (),
" (", i2p::data::GetIdentHashAbbreviation (GetRemoteIdentity ()->GetIdentHash ()), ") terminated");
" (", i2p::data::GetIdentHashAbbreviation (remoteIdentity->GetIdentHash ()), ") terminated");
}
else
{

2
libi2pd/RouterInfo.cpp

@ -131,7 +131,7 @@ namespace data @@ -131,7 +131,7 @@ namespace data
m_BufferLen = s.tellg ();
if (m_BufferLen < 40 || m_BufferLen > MAX_RI_BUFFER_SIZE)
{
LogPrint(eLogError, "RouterInfo: File", fullPath, " is malformed");
LogPrint(eLogError, "RouterInfo: File ", fullPath, " is malformed");
return false;
}
s.seekg(0, std::ios::beg);

2
libi2pd/SSU2Session.cpp

@ -277,7 +277,7 @@ namespace transport @@ -277,7 +277,7 @@ namespace transport
if (remoteIdentity)
{
LogPrint (eLogDebug, "SSU2: Session with ", GetRemoteEndpoint (),
" (", i2p::data::GetIdentHashAbbreviation (GetRemoteIdentity ()->GetIdentHash ()), ") terminated");
" (", i2p::data::GetIdentHashAbbreviation (remoteIdentity->GetIdentHash ()), ") terminated");
}
else
{

Loading…
Cancel
Save