From 5b05c870fbd5219d0c50cad5e4cd6570bce2390e Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 20 Feb 2017 14:59:50 +0200 Subject: [PATCH] chore(cloud) console.log -> CloudCmd.log --- client/cloud.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cloud.js b/client/cloud.js index d38cf170..daa610cd 100644 --- a/client/cloud.js +++ b/client/cloud.js @@ -36,7 +36,7 @@ module.exports.uploadFile = (filename, data) => { module.exports.saveFile = (callback) => { filepicker.pick((fpFile) => { - console.log(fpFile); + CloudCmd.log(fpFile); const {url} = fpFile; const responseType = 'arraybuffer'; const success = exec.with(callback, fpFile.filename);