Add web server launch message
All checks were successful
Push Workflows / rustfmt (push) Successful in 6s
Push Workflows / tailwind-build (push) Successful in 7s
Push Workflows / test (push) Successful in 22s
Push Workflows / clippy (push) Successful in 17s
Push Workflows / docs (push) Successful in 22s
Push Workflows / build (push) Successful in 45s
Push Workflows / nix-build (push) Successful in 5m2s

This commit is contained in:
2026-06-23 21:27:00 -04:00
parent dfa75b97ca
commit 598215e50e

View File

@@ -6,6 +6,7 @@ pub fn main() -> Result<()> {
tracing::warn!("Error reading .env: {e}"); tracing::warn!("Error reading .env: {e}");
} }
tracing::info!("Setup complete, launching web server...");
dioxus::launch(App); dioxus::launch(App);
Err(Error::message_here("Web server exited")) Err(Error::message_here("Web server exited"))