From 18ccefc2d484a2b3bea9a51ec2b0e16b06e54672 Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Sat, 5 Sep 2020 14:54:12 -0400 Subject: [PATCH] add debug log --- src/admin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/admin.rs b/src/admin.rs index cb1b03c..713e922 100644 --- a/src/admin.rs +++ b/src/admin.rs @@ -93,7 +93,7 @@ async fn handle_register(registration : AdminRegistration, // PUT it and see if it worked let client = reqwest::Client::new(); let url = format!("https://{}/api/me/flexRouters", registration.bubble); - println!("handle_register: registering ourself with {}", url); + println!("handle_register: registering ourself with {}, sending: {:?}", url, bubble_registration); match client.put(url.as_str()) .header(HEADER_BUBBLE_SESSION, registration.session) .json(&bubble_registration)