Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tkstanczak committed Aug 27, 2019
1 parent 5088928 commit 01c16cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Nethermind/Nethermind.Network/SessionMonitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ private async Task SendPingMessagesAsync()
if (_logger.IsTrace) _logger.Trace($"Sent ping messages to {tasks.Length} peers. Received {successes} pongs.");
if (failures > tasks.Length / 3)
{
if (_logger.IsWarn) _logger.Warn($"More tahn 33% of nodes did not respond to a Ping message - {failures}/{successes + failures}");
if (_logger.IsWarn) _logger.Warn($"More than 33% of nodes did not respond to a Ping message - {failures}/{successes + failures}");
}

_pingTasks.Clear();
Expand Down

0 comments on commit 01c16cc

Please sign in to comment.