From f4b4ef7178b712ce90c29473f308771f8a6ce73c Mon Sep 17 00:00:00 2001 From: Jeff Gough <j@jeffreygough.com> Date: Thu, 22 Aug 2019 17:39:11 +0200 Subject: [PATCH] Tweak watchdog reset log message --- epicardium/modules/hardware.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epicardium/modules/hardware.c b/epicardium/modules/hardware.c index 63e63431..216ff2db 100644 --- a/epicardium/modules/hardware.c +++ b/epicardium/modules/hardware.c @@ -37,7 +37,7 @@ int hardware_early_init(void) if(WDT_GetResetFlag(MXC_WDT0)) { WDT_ClearResetFlag(MXC_WDT0); - LOG_INFO("init", "Reset due to watchdog timeout"); + LOG_INFO("watchdog", "Reset due to watchdog timeout"); } WDT_Enable(MXC_WDT0, 1); -- GitLab