Browse Source

more debug output

pull/1812/head
Frank Laszlo 7 years ago
parent
commit
be93b9b7cf
  1. 3
      dnsapi/dns_fh.sh
  2. 3
      dnsapi/dns_nexcess.sh
  3. 3
      dnsapi/dns_thermo.sh

3
dnsapi/dns_fh.sh

@ -19,6 +19,9 @@ dns_fh_add() {
host="${1}"
txtvalue="${2}"
_debug host "${host}"
_debug txtvalue "${txtvalue}"
if ! _check_fh_api_token; then
return 1
fi

3
dnsapi/dns_nexcess.sh

@ -19,6 +19,9 @@ dns_nexcess_add() {
host="${1}"
txtvalue="${2}"
_debug host "${host}"
_debug txtvalue "${txtvalue}"
if ! _check_nexcess_api_token; then
return 1
fi

3
dnsapi/dns_thermo.sh

@ -19,6 +19,9 @@ dns_thermo_add() {
host="${1}"
txtvalue="${2}"
_debug host "${host}"
_debug txtvalue "${txtvalue}"
if ! _check_thermo_api_token; then
return 1
fi

Loading…
Cancel
Save