Display the DNS update response
[gandi_dns_update.git] / src / main.rs
index 280b718..67c251a 100644 (file)
@@ -175,5 +175,7 @@ fn update_record_ip(api_key: &str, name: &str, fqdn: &str, ip: Ipv4Addr, ttl: i3
 
     let json_value = request_livedns_gandi(api_key, &format!("domains/{}/records/{}/A", fqdn, name), Method::Put(json_body.to_string()))?;
 
+    println!("Update response: {}", json_value);
+
     Ok(())
 }