Change the "mDNSPlatformRawTime went backwards" message from LogMsg to

debugf. It's not that interesting, as it is comparing the results of two
gettimeofday() calls.
This commit is contained in:
jmcneill 2014-11-25 02:29:57 +00:00
parent 67e121920b
commit 6eceb7f535
1 changed files with 1 additions and 1 deletions

View File

@ -2697,7 +2697,7 @@ mDNSexport void mDNS_Lock_(mDNS *const m, const char * const functionname)
if (m->timenow_last - m->timenow > 0)
{
m->timenow_adjust += m->timenow_last - m->timenow;
LogMsg("%s: mDNSPlatformRawTime went backwards by %ld ticks; setting correction factor to %ld", functionname, m->timenow_last - m->timenow, m->timenow_adjust);
debugf("%s: mDNSPlatformRawTime went backwards by %ld ticks; setting correction factor to %ld", functionname, m->timenow_last - m->timenow, m->timenow_adjust);
m->timenow = m->timenow_last;
}
m->timenow_last = m->timenow;