log changes of network status

This commit is contained in:
Vort 2024-01-28 15:37:14 +02:00
parent a3246cd9dc
commit 81015a5228
2 changed files with 13 additions and 0 deletions

View file

@ -303,6 +303,8 @@ namespace i2p
SetTesting (false);
if (status != m_Status)
{
LogPrint(eLogInfo, "Router: network status v4 changed ",
ROUTER_STATUS_NAMES[m_Status], " -> ", ROUTER_STATUS_NAMES[status]);
m_Status = status;
switch (m_Status)
{
@ -323,6 +325,8 @@ namespace i2p
SetTestingV6 (false);
if (status != m_StatusV6)
{
LogPrint(eLogInfo, "Router: network status v6 changed ",
ROUTER_STATUS_NAMES[m_StatusV6], " -> ", ROUTER_STATUS_NAMES[status]);
m_StatusV6 = status;
switch (m_StatusV6)
{