use console.log instead

This commit is contained in:
Girish Ramakrishnan 2015-07-27 12:46:39 -07:00
parent de990f0765
commit 34d77440f0
1 changed files with 2 additions and 2 deletions

View File

@ -100,10 +100,10 @@ describe('Cloudron backup testing', function () {
it('wait for local dns', function () {
for (var i = 0; i < 20; i++) {
var ip = dnsSync.resolve(box.domain);
console.dir(ip);
console.dir(ip, cloudronIp);
if (ip === cloudronIp) return;
debug('waiting for local dns to change from %s to %s', ips[0], cloudronIp);
console.log('waiting for local dns to change from %s to %s', ips[0], cloudronIp);
sleep(30);
}
});