Display the DNS update response
[gandi_dns_update.git] / src / main.rs
index 2a9b5e4..67c251a 100644 (file)
@@ -11,7 +11,7 @@
 
 #![cfg_attr(debug_assertions, allow(unused_variables, unused_imports, dead_code))]
 
-use std::{ fmt::format, fs::File, net::{ IpAddr, Ipv4Addr }, thread, time };
+use std::{ fs::File, net::{ IpAddr, Ipv4Addr }, thread, time };
 use ron::{ de::from_reader, ser::to_writer };
 use serde::{ Deserialize, Serialize };
 use serde_json::{ Value, json };
@@ -88,11 +88,9 @@ fn main() -> Result<()> {
 
 fn check_and_update_dns(api_key: &str, fqdn: &str, domains: &Vec<String>, ttl: i32) -> Result<()> {
     let real_ip = get_real_ip()?;
-    dbg!(&real_ip);
 
     for domain in domains {
         let current_ip = get_current_record_ip(api_key, domain, fqdn)?;
-        dbg!(domain, current_ip);
 
         if real_ip != current_ip {
             println!("IP addresses don't match for domain {}: real = {}, dns = {}. Renewing DNS...", domain, real_ip, current_ip);
@@ -177,7 +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()))?;
 
-    dbg!(json_value);
+    println!("Update response: {}", json_value);
 
     Ok(())
 }