From 6df7e938cbcfe69ac5fc16076804ec8c546f2e56 Mon Sep 17 00:00:00 2001 From: Torrie Fischer Date: Wed, 20 Dec 2023 12:11:36 +0100 Subject: [PATCH] figments: mainloop: better startup output --- lib/Figments/MainLoop.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Figments/MainLoop.cpp b/lib/Figments/MainLoop.cpp index 6277e4f..c60b3c4 100644 --- a/lib/Figments/MainLoop.cpp +++ b/lib/Figments/MainLoop.cpp @@ -104,13 +104,14 @@ MainLoop::start() { s_instance = this; Log.notice("Welcome to 🌕 Figment 0.3.0"); - Log.notice("*** Starting %d tasks...", scheduler.tasks.size()); + Log.notice("*** Scheduling %d tasks...", scheduler.tasks.size()); Serial.flush(); for(auto task: scheduler) { Log.notice("** Starting %s", task->name); task->start(); } loop(); + Log.notice("*** Scheduler started."); dispatch(InputEvent::ReadyToRoll); }