You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by kn...@apache.org on 2019/03/08 02:32:41 UTC

[cordova-plugin-file] branch travis_tests updated: console.los is changed to console.warn in createFile

This is an automated email from the ASF dual-hosted git repository.

knaito pushed a commit to branch travis_tests
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-file.git


The following commit(s) were added to refs/heads/travis_tests by this push:
     new 32c11b1  console.los is changed to console.warn in createFile
32c11b1 is described below

commit 32c11b1708f04f63252a9a387b99b9450f25777b
Author: knaito <kn...@asial.co.jp>
AuthorDate: Fri Mar 8 11:32:15 2019 +0900

    console.los is changed to console.warn in createFile
---
 tests/tests.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/tests.js b/tests/tests.js
index a07fdac..0e18ef9 100644
--- a/tests/tests.js
+++ b/tests/tests.js
@@ -313,8 +313,8 @@ exports.defineAutoTests = function () {
                         deleteEntry(fileName, done);
                     };
                     createFile(fileName, function (entry) {
-                        console.log('----- entry.toURL() ----');
-                        console.log(entry.toURL());
+                        console.warn('----- entry.toURL() ----');
+                        console.warn(entry.toURL());
                         window.resolveLocalFileSystemURL(entry.toURL(), win, failed.bind(null, done, 'window.resolveLocalFileSystemURL - Error resolving file URL: ' + entry.toURL()));
                     }, failed.bind(null, done, 'createFile - Error creating file: ' + fileName), failed.bind(null, done, 'createFile - Error creating file: ' + fileName));
                 });


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org