From cfabeabfc9ccb509a0d76780ffb7471b72ec40cf Mon Sep 17 00:00:00 2001 From: GigiaJ Date: Sun, 5 Oct 2025 05:01:40 -0500 Subject: [PATCH] Remove println --- iac/src/main/infra/dns.cljs | 1 - 1 file changed, 1 deletion(-) diff --git a/iac/src/main/infra/dns.cljs b/iac/src/main/infra/dns.cljs index 28d7254..aa63de9 100644 --- a/iac/src/main/infra/dns.cljs +++ b/iac/src/main/infra/dns.cljs @@ -11,7 +11,6 @@ (defn get-record-type "Determines the DNS record type (A or AAAA) based on IP address format." [ip-address] - (println ip-address) (if (.includes ip-address ":") "AAAA" "A"))