From 06448f146d38d7c1d283b2a0ee3fb0e93e4a8c6d Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 7 Jun 2016 20:09:53 -0700 Subject: [PATCH] fix typo --- src/mailer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mailer.js b/src/mailer.js index fe76a7022..6cd2e731d 100644 --- a/src/mailer.js +++ b/src/mailer.js @@ -114,7 +114,7 @@ function getTxtRecords(callback) { function checkDns() { getTxtRecords(function (error, records) { if (error || !records) { - debug('checkDns: DNS error or no records looking up TXT records for %s %s', config.adminFqdn(), error, records); + debug('checkDns: DNS error or no records looking up TXT records for %s %s', config.fqdn(), error, records); gCheckDnsTimerId = setTimeout(checkDns, 60000); return; }