Zoul platform.c: removing leftover PRINTF

This commit is contained in:
Simon Duquennoy 2018-02-27 12:34:58 -08:00 committed by Atis Elsts
parent b321e3e11a
commit a2262786b1
1 changed files with 2 additions and 2 deletions

View File

@ -124,7 +124,7 @@ rtc_init(void)
*/
/* Get the system date in the following format: wd dd mm yy hh mm ss */
PRINTF("Setting RTC from system date: %s\n", DATE);
LOG_INFO("Setting RTC from system date: %s\n", DATE);
/* Configure the RTC with the current values */
td.weekdays = (uint8_t)strtol(DATE, &next, 10);
@ -149,7 +149,7 @@ rtc_init(void)
/* Set the time and date */
if(rtcc_set_time_date(&td) == AB08_ERROR) {
PRINTF("Failed to set time and date\n");
LOG_INFO("Failed to set time and date\n");
}
#endif
#endif