From bec9e8af70a04ace0fa8ee7bc47f98daaf60a39a Mon Sep 17 00:00:00 2001 From: "Mario Limonciello (AMD)" Date: Tue, 24 Feb 2026 07:37:02 -0600 Subject: [PATCH] Don't spam `Enter 'exit' to stop the server` in serve --- src/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/src/main.cpp b/src/src/main.cpp index 0b06e17c..0d02278b 100644 --- a/src/src/main.cpp +++ b/src/src/main.cpp @@ -141,8 +141,8 @@ void ensure_models_directory(const std::string& exe_dir) { ///@brief handle_user_input is used to handle the user input void handle_user_input() { std::string input; + header_print("FLM", "Enter 'exit' to stop the server: "); while (!should_exit) { - header_print("FLM", "Enter 'exit' to stop the server: "); std::getline(std::cin, input); if (input == "exit") { should_exit = true;