mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-08-26 10:10:24 +01:00
Add more errors diagnostics to understand malformed configs
This commit is contained in:
parent
3a18e7ab91
commit
86366a6f73
1 changed files with 1 additions and 0 deletions
|
@ -1085,6 +1085,7 @@ namespace client
|
||||||
m_StreamingInboundSpeed = std::stoi(it->second);
|
m_StreamingInboundSpeed = std::stoi(it->second);
|
||||||
if (it != params->end ())
|
if (it != params->end ())
|
||||||
m_StreamingMaxConcurrentStreams = std::stoi(it->second);
|
m_StreamingMaxConcurrentStreams = std::stoi(it->second);
|
||||||
|
LogPrint (eLogDebug, "Destination: Reading parameter ", I2CP_PARAM_STREAMING_ANSWER_PINGS);
|
||||||
it = params->find (I2CP_PARAM_STREAMING_ANSWER_PINGS);
|
it = params->find (I2CP_PARAM_STREAMING_ANSWER_PINGS);
|
||||||
if (it != params->end ())
|
if (it != params->end ())
|
||||||
m_IsStreamingAnswerPings = std::stoi (it->second); // 1 for true
|
m_IsStreamingAnswerPings = std::stoi (it->second); // 1 for true
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue