From 3744086f29a8ddca81cee7bc487befc4d28a6f39 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 9 Nov 2025 17:09:14 -0500 Subject: [PATCH] fix: improve logging for Overte connection status and provide usage tips --- src/main.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 5998598..eaed096 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -118,10 +118,15 @@ int main(int argc, char** argv) { std::cout << "[Discovery] Selected: " << overteUrl << std::endl; } } + + std::cout << "[main] Connecting to Overte domain: " << overteUrl << std::endl; OverteClient overte(overteUrl); // Overte is optional; warn if unreachable but continue in offline mode. if (!overte.connect()) { - std::cerr << "[Overte] Domain unreachable; running in offline mode.\n"; + std::cerr << "[main] Overte domain unreachable; running in offline mode." << std::endl; + std::cerr << "[main] Tip: Use --overte=host:port to specify a domain, or set STARWORLD_SIMULATE=1" << std::endl; + } else { + std::cout << "[main] Overte connection established" << std::endl; } InputHandler input(stardust, overte);