diff --git a/NetworkResurrector.Application/Services/PingService.cs b/NetworkResurrector.Application/Services/PingService.cs index 8589afa..0f52bcb 100644 --- a/NetworkResurrector.Application/Services/PingService.cs +++ b/NetworkResurrector.Application/Services/PingService.cs @@ -35,7 +35,7 @@ namespace NetworkResurrector.Application.Services var builder = new StringBuilder(); builder.AppendLine($"Machine '{ipAddress}' has responded to ping."); - builder.AppendLine($"Address: {reply.Address.ToString()}"); + builder.AppendLine($"Address: {reply.Address}"); builder.AppendLine($"RoundTrip time: {reply.RoundtripTime}"); builder.AppendLine($"Time to live: {reply.Options.Ttl}"); builder.AppendLine($"Don't fragment: {reply.Options.DontFragment}");