Split DNS info depending on record type. See #27
All checks were successful
Run Tests on Code / run-tests (push) Successful in 14s

This commit is contained in:
Neshura 2023-12-27 13:34:30 +01:00
parent 660b4efa26
commit 4adfc7efb2
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -278,7 +278,7 @@ fn main() {
if let Some(cf_entry) = cf_entry {
match cf_zone.update(entry, r#type, &cf_entry.id, ipv6, ipv4) {
Ok(_) => {
let info_msg = format!("Updated DNS Record(s) for entry '{}' in zone '{}'", entry.name, zone.name);
let info_msg = format!("Updated {} DNS Record for entry '{}' in zone '{}'", r#type, entry.name, zone.name);
match connected_to_journal() {
true => warn!("[INFO] {info_msg}"),
false => println!("[INFO] {info_msg}"),
@ -290,7 +290,7 @@ fn main() {
else {
match cf_zone.create(entry, r#type, ipv6, ipv4) {
Ok(_) => {
let info_msg = format!("Created DNS Record(s) for entry '{}' in zone '{}'", entry.name, zone.name);
let info_msg = format!("Created {} DNS Record for entry '{}' in zone '{}'", r#type, entry.name, zone.name);
match connected_to_journal() {
true => info!("[INFO] {info_msg}"),
false => println!("[INFO] {info_msg}"),