From 10d8c67a685eef048a4b37f0b910781ca856d01c Mon Sep 17 00:00:00 2001 From: Anna Rose Wiggins Date: Thu, 17 Jul 2025 13:08:50 -0400 Subject: [PATCH] Update startup output. --- cmd/joyful/main.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/cmd/joyful/main.go b/cmd/joyful/main.go index 6740085..e504372 100644 --- a/cmd/joyful/main.go +++ b/cmd/joyful/main.go @@ -68,9 +68,12 @@ func main() { // initialize the mode variable mode := config.GetModes()[0] - logger.Logf("Initial mode set to '%s'", mode) - fmt.Println("Joyful Running! Press Ctrl+C to quit.") + fmt.Println("Joyful Running! Press Ctrl+C to quit. Press Enter to reload rules.") + if len(config.GetModes()) > 1 { + logger.Logf("Initial mode set to '%s'", mode) + } + for { // Get an event (blocks if necessary) channelEvent := <-eventChannel