From 8545ba733a7ab3d1f4cc4f91b5f0402a588800e6 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Thu, 9 Jan 2014 18:21:50 +0100 Subject: [PATCH] Convert disabled log message in rtc_linux.c to DEBUG_LOG --- rtc_linux.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/rtc_linux.c b/rtc_linux.c index fe75855..fe52c33 100644 --- a/rtc_linux.c +++ b/rtc_linux.c @@ -285,15 +285,10 @@ slew_samples coef_gain_rate = (1.0 + dfreq) * (1.0 + coef_gain_rate) - 1.0; } -#if 0 - LOG(LOGS_INFO, LOGF_RtcLinux, "dfreq=%.8f doffset=%.6f old_fast=%.6f old_rate=%.3f new_fast=%.6f new_rate=%.3f", + DEBUG_LOG(LOGF_RtcLinux, "dfreq=%.8f doffset=%.6f old_fast=%.6f old_rate=%.3f new_fast=%.6f new_rate=%.3f", dfreq, doffset, old_seconds_fast, 1.0e6 * old_gain_rate, coef_seconds_fast, 1.0e6 * coef_gain_rate); -#else - (void)old_seconds_fast; (void)old_gain_rate; -#endif - } /* ================================================== */