mirror of
https://github.com/apache/cordova-plugin-file-transfer.git
synced 2026-04-28 00:02:49 +08:00
Remove verbose console log messages
This commit is contained in:
@@ -114,7 +114,6 @@ exports.defineAutoTests = function () {
|
||||
function (fileEntry) {
|
||||
fileEntry.remove(
|
||||
function () {
|
||||
console.log('deleted \'' + name + '\'');
|
||||
done();
|
||||
},
|
||||
function () {
|
||||
@@ -123,7 +122,6 @@ exports.defineAutoTests = function () {
|
||||
);
|
||||
},
|
||||
function () {
|
||||
console.log('no \'' + name + '\' to delete; skipping deletion');
|
||||
done();
|
||||
}
|
||||
);
|
||||
@@ -135,7 +133,6 @@ exports.defineAutoTests = function () {
|
||||
fileEntry.createWriter(function (writer) {
|
||||
|
||||
writer.onwrite = function () {
|
||||
console.log('created test file \'' + name + '\'');
|
||||
success(fileEntry);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user