diff --git a/src/main.rs b/src/main.rs index 7e618c2..2fd4502 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 path: {} and extracted the parameters domain: {} and token: {}", split_path, 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 {