Skip to content

Commit 02b54be

Browse files
BernardXiongclaude
andcommitted
[bsp][k230] Downgrade RTC driver register log from INFO to DEBUG
Change LOG_I to LOG_D for the "rtc driver register OK" message to reduce console noise during normal boot. Also remove the unnecessary trailing newline character from the log message. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 2371fc2 commit 02b54be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bsp/k230/drivers/interdrv/rtc/drv_rtc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ static int rt_hw_rtc_init(void)
477477

478478
ret = rt_device_register(&rtc_dev.device, "rtc", RT_DEVICE_FLAG_RDWR);
479479
RT_ASSERT(ret == RT_EOK);
480-
LOG_I("rtc driver register OK\n");
480+
LOG_D("rtc driver register OK");
481481

482482
rtc_alarm_stop(&rtc_dev);
483483
rtc_tick_stop(&rtc_dev);

0 commit comments

Comments
 (0)