This commit is contained in:
Love 2024-07-14 16:32:07 +02:00
parent 78c0fbf83b
commit 087eaa04fa

View File

@ -93,6 +93,10 @@ impl CloudflareClient {
let new_ip_s = new_ip.to_string().into_boxed_str(); let new_ip_s = new_ip.to_string().into_boxed_str();
for mut record in records.into_iter() { for mut record in records.into_iter() {
if record.content == new_ip_s { if record.content == new_ip_s {
info!(
"On {}, ip already updated to '{}'",
&record.name, &record.content
);
continue; continue;
} }
info!( info!(