Split DNS info depending on record type. See #27
All checks were successful
Run Tests on Code / run-tests (push) Successful in 14s
All checks were successful
Run Tests on Code / run-tests (push) Successful in 14s
This commit is contained in:
parent
660b4efa26
commit
4adfc7efb2
1 changed files with 2 additions and 2 deletions
|
@ -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}"),
|
||||
|
|
Loading…
Reference in a new issue