mirror of
https://github.com/oxen-io/lokinet
synced 2023-12-14 06:53:00 +01:00
Don't report a huge negative elapsed time on startup (#1401)
This commit is contained in:
parent
3b70b99dd2
commit
d10fee87c7
1 changed files with 2 additions and 1 deletions
|
@ -682,7 +682,8 @@ namespace llarp
|
|||
LogInfo(_rc.Age(now), " since we last updated our RC");
|
||||
LogInfo(_rc.TimeUntilExpires(now), " until our RC expires");
|
||||
}
|
||||
LogInfo(now - m_LastStatsReport, " last reported stats");
|
||||
if (m_LastStatsReport > 0s)
|
||||
LogInfo(now - m_LastStatsReport, " last reported stats");
|
||||
m_LastStatsReport = now;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue