From 7baf979a59b219dbd49200f6a0a78fb3a5009be0 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 1 Oct 2019 14:39:40 -0700 Subject: [PATCH] Fix verbose logs --- src/dns/digitalocean.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/dns/digitalocean.js b/src/dns/digitalocean.js index 4f43acbe5..b4d7df28e 100644 --- a/src/dns/digitalocean.js +++ b/src/dns/digitalocean.js @@ -66,12 +66,10 @@ function getInternal(dnsConfig, zoneName, name, type, callback) { nextPage = (result.body.links && result.body.links.pages) ? result.body.links.pages.next : null; - debug(`getInternal: next page - ${nextPage}`); - iteratorDone(); }); }, function () { return !!nextPage; }, function (error) { - debug('getInternal:', error, matchingRecords); + debug('getInternal:', error, JSON.stringify(matchingRecords)); if (error) return callback(error);