From 380c32eb78f4d40265d7e2ea3f0752cfe5383109 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 27 Jul 2015 11:39:52 -0700 Subject: [PATCH] Remove spurious debugs --- cloudron.js | 1 - test/cloudron-backup-test.js | 1 - 2 files changed, 2 deletions(-) diff --git a/cloudron.js b/cloudron.js index 6cf2f62..c653c39 100644 --- a/cloudron.js +++ b/cloudron.js @@ -211,7 +211,6 @@ Cloudron.prototype.backup = function () { verifyResponse(res, 'Could not get backups'); var existingBackups = res.body.backups; - console.dir(existingBackups); res = request.post(this._origin + '/api/v1/backups').query({ access_token: this._credentials.accessToken }).end(); verifyResponse(res, 'Could not schedule backup'); diff --git a/test/cloudron-backup-test.js b/test/cloudron-backup-test.js index 9590a83..b7983ed 100644 --- a/test/cloudron-backup-test.js +++ b/test/cloudron-backup-test.js @@ -47,7 +47,6 @@ describe('Cloudron backup testing', function () { size: '512mb', version: latestVersion }); - console.dir(box); appStore.waitForCloudron(box.id); cloudron = new Cloudron(box); });