From 31e407230537dbb7bfb6a2d4a3f42fde49270d1d Mon Sep 17 00:00:00 2001 From: Torrie Fischer Date: Wed, 20 Dec 2023 12:14:36 +0100 Subject: [PATCH] platform: esp8266: print startup reason on startup --- src/platform/arduino/esp8266/Platform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/arduino/esp8266/Platform.cpp b/src/platform/arduino/esp8266/Platform.cpp index f1ffb91..097a6de 100644 --- a/src/platform/arduino/esp8266/Platform.cpp +++ b/src/platform/arduino/esp8266/Platform.cpp @@ -88,7 +88,7 @@ template<> void PlatformImpl::bootSplash() { - Log.notice("ESP8266!"); + Log.trace("ESP8266 startup reason: %d", Platform::bootopts.resetReason); } template<>