timesyncd: log louder when we refuse a server due to root distance

This is something people should know about, since it's caused by
misconfiguration.

Fixes: #13912
This commit is contained in:
Lennart Poettering 2020-01-21 12:03:02 +01:00
parent c680e4efa8
commit ce96c9cb1a
1 changed files with 1 additions and 1 deletions

View File

@ -514,7 +514,7 @@ static int manager_receive_response(sd_event_source *source, int fd, uint32_t re
root_distance = ntp_ts_short_to_d(&ntpmsg.root_delay) / 2 + ntp_ts_short_to_d(&ntpmsg.root_dispersion);
if (root_distance > (double) m->max_root_distance_usec / (double) USEC_PER_SEC) {
log_debug("Server has too large root distance. Disconnecting.");
log_info("Server has too large root distance. Disconnecting.");
return manager_connect(m);
}