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:
parent
67e121920b
commit
6eceb7f535
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue