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 {