增加端口日志

This commit is contained in:
陈国伟 2021-11-23 14:50:00 +08:00
parent ff3687eec6
commit e308612b3f

View File

@ -111,7 +111,7 @@ namespace FastGithub.DomainResolve
if (oldSegmentum.SequenceEqual(newSegmentum) == false)
{
var addressArray = string.Join(", ", newSegmentum.Select(item => item.ToString()));
this.logger.LogInformation($"{dnsEndPoint.Host}->[{addressArray}]");
this.logger.LogInformation($"{dnsEndPoint.Host}:{dnsEndPoint.Port}->[{addressArray}]");
}
}
}