Add batch DNS operations documentation and refine logging format in CfDnsClient. Extend tests for record creation and deletion.

This commit is contained in:
2025-12-27 16:48:26 +01:00
parent a3dc89e2c5
commit a965f21d6b
3 changed files with 133 additions and 2 deletions
@@ -272,7 +272,7 @@ public class CfDnsClient extends CfBasicHttpClient {
if (changed) {
log.debug("Record {} of the type [{}] successful deleted.", rec.getName(), rec.getType());
} else {
log.warn("Record {} of the type {} was not deleted.", rec.getName(), rec.getType());
log.warn("Record {} of the type [{}] was not deleted.", rec.getName(), rec.getType());
}
return changed;
}