From af1aafbde63f4f8db0d8af114171cd4f2ced0c45 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Tue, 14 Jul 2026 20:32:46 -0400 Subject: [PATCH] Write config to log --- src/server/main.rs | 2 ++ 1 file changed, 2 insertions(+) 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.