Update 'src/main.rs'

Moar debugging!
This commit is contained in:
Thelie 2023-07-05 23:34:03 +02:00
parent d467bb7c64
commit c442bd8667

View file

@ -220,7 +220,7 @@ async fn echo(req: Request<Body>) -> Result<Response<Body>> {
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 {