From 3b97d112ad79b1a5ab1f3de6d738c7e5f60ae2e6 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Fri, 24 Jul 2026 02:44:22 -0600 Subject: [PATCH] feat(log): Add CF-ERR to operation attr Update 'listCFErrors' function so that 'CF-ERR' is appended to the 'operation' field of the error log. --- cfddns.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfddns.sh b/cfddns.sh index 050d9ad..b93a884 100644 --- a/cfddns.sh +++ b/cfddns.sh @@ -85,7 +85,7 @@ listCFErrors() { messages="${messages#*_}" # output to log - writePlainTextLog "${message}" "err" "fail" "$2" "$code" + writePlainTextLog "${message}" "err" "fail" "$2:CF-ERR" "$code" done }