From c442bd8667b7548106b7e26a9f0bfa473cd00068 Mon Sep 17 00:00:00 2001 From: Thelie Date: Wed, 5 Jul 2023 23:34:03 +0200 Subject: [PATCH] Update 'src/main.rs' Moar debugging! --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 71715f2..7e618c2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -220,7 +220,7 @@ async fn echo(req: Request) -> Result> { let domain = split_path[1]; let token = split_path[2]; - println!("Got the parameters domain: {} and token: {}", domain, token); + println!("Got the path: {} and extracted the parameters domain: {} and token: {}", split_path, domain, token); response = generate_feed(response, domain, token).await?; } else {