Update gurt_server.rs

This commit is contained in:
Face
2025-09-08 19:57:08 +03:00
parent 611b90cf0b
commit 3b87ab39c9

View File

@@ -390,7 +390,7 @@ async fn serve_static_file(ctx: &ServerContext) -> Result<GurtResponse> {
};
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) => {