Remove debug that is flooding the logs

This commit is contained in:
Girish Ramakrishnan
2015-09-16 10:50:15 -07:00
parent 40b6d7413d
commit 44d4d1fa67
-2
View File
@@ -80,8 +80,6 @@ function status(changeId, callback) {
assert.strictEqual(typeof changeId, 'string');
assert.strictEqual(typeof callback, 'function');
debug('status: ', changeId);
api().getChangeStatus(changeId, function (error, status) {
if (error) return callback(new SubdomainError(SubdomainError.EXTERNAL_ERROR, error));
callback(null, status === 'INSYNC' ? 'done' : 'pending');