diff --git a/src/server/main.rs b/src/server/main.rs index c7dd949..95ea582 100644 --- a/src/server/main.rs +++ b/src/server/main.rs @@ -25,6 +25,8 @@ pub async fn main() -> Result { .map_err(|e| Error::message_here(e.to_string())) .err_context("Failed to load config")?; + tracing::debug!("Loaded configuration: {config:#?}"); + // Dioxus doesn't expose a way to configure the public path other than this environment // variable, and also doesn't provide a way to read what the public path is. As a workaround we // expose a config option and set this variable that Dioxus expects.