diff --git a/src/Platform.cpp b/src/Platform.cpp index 50bdce0..18e54c5 100644 --- a/src/Platform.cpp +++ b/src/Platform.cpp @@ -110,14 +110,18 @@ Platform::bootSplash() Log.error(u8"Last Figment was %s", lastTaskBuf); } - Log.trace("Startup reason: %d", bootopts.resetReason); - Log.trace("Registered tasks:"); auto it = beginTasks(); + while (it != endTasks()) { + if (!(*it)->isFigment()) { + Log.trace(" %s", (*it)->name); + } + ++it; + } + Log.trace("Registered Figments:"); + it = beginTasks(); while (it != endTasks()) { if ((*it)->isFigment()) { - Log.trace(" Figment: %s", (*it)->name); - } else { Log.trace(" %s", (*it)->name); } ++it;