1
0
mirror of https://bitbucket.org/anguist/ntpa synced 2025-12-08 14:58:42 +00:00

Lookup on known time servers

This commit is contained in:
Carsten Larsen
2016-12-14 21:06:14 +01:00
parent 938c24765e
commit cd2135aca1
5 changed files with 1588 additions and 3 deletions

View File

@ -116,6 +116,13 @@ namespace Ntp.Analyzer.Process.Log
Severity.Info);
}
internal static void KnownServer(this LogBase log, int id, string name)
{
log.WriteLine(
$"Found known time server {name} with id {id} in list.",
Severity.Info);
}
internal static void NoConfig(this LogBase log, string file)
{
log.WriteLine($"Cannot find configuration file {file}", Severity.Error);