allow console log in one place

This commit is contained in:
Alex Yatskov 2017-01-15 12:03:27 -08:00
parent a5aff370e4
commit 0c88d3fa27

View File

@ -43,7 +43,9 @@ function promiseCallback(promise, callback) {
return promise.then(result => {
callback({result});
}).catch(error => {
/* eslint-disable */
console.log(error);
/* eslint-enable */
callback({error});
});
}