From 0592a5eff7d0151fdff020618be2d63601ec5ef8 Mon Sep 17 00:00:00 2001 From: CryptoManiac Date: Tue, 22 Sep 2015 21:43:04 +0300 Subject: [PATCH] Debug messages. --- src/ntp.cpp | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/ntp.cpp b/src/ntp.cpp index c46991e..0cd94b9 100644 --- a/src/ntp.cpp +++ b/src/ntp.cpp @@ -449,6 +449,7 @@ void ThreadNtpSamples(void* parg) { if (abs64(nClockOffset) < nMaxOffset) { // Everything seems right, remember new trusted offset. + printf("ThreadNtpSamples: new offset sample from %s, offset=%" PRId64 ".\n", strTrustedUpstream.c_str(), nClockOffset); nNtpOffset = nClockOffset; } else { @@ -472,6 +473,7 @@ void ThreadNtpSamples(void* parg) { int64_t nClockOffset = NtpGetTime(ip) - GetTime(); if (abs64(nClockOffset) < nMaxOffset) { // Skip the deliberately wrong timestamps + printf("ThreadNtpSamples: new offset sample from %s, offset=%" PRId64 ".\n", ip.ToString().c_str(), nClockOffset); vTimeOffsets.input(nClockOffset); } } -- 1.7.1