From 3b87ab39c9f5977ed0ffdc4383e7d369b6c8ebaa Mon Sep 17 00:00:00 2001 From: Face <69168154+face-hh@users.noreply.github.com> Date: Mon, 8 Sep 2025 19:57:08 +0300 Subject: [PATCH] Update gurt_server.rs --- dns/src/gurt_server.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dns/src/gurt_server.rs b/dns/src/gurt_server.rs index 2860395..ce71db1 100644 --- a/dns/src/gurt_server.rs +++ b/dns/src/gurt_server.rs @@ -390,7 +390,7 @@ async fn serve_static_file(ctx: &ServerContext) -> Result { }; let full_path = frontend_dir.join(file_path); - log::info!("Attempting to serve file: '{}'", full_path.display()); + log::info!("Attempting to serve file: '{}' from directory: '{}'", full_path.display(), frontend_dir.display()); match tokio::fs::read_to_string(&full_path).await { Ok(content) => {