1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-10 22:11:50 +02:00

All: Removed certain log statements so that sensitive info doesn't end up in logs

This commit is contained in:
Laurent Cozic
2018-01-17 21:17:40 +00:00
parent 9efbf74b6f
commit 9746a3964b
4 changed files with 2 additions and 14 deletions

View File

@@ -34,19 +34,9 @@ class FsDriverRN {
let output = [];
for (let i = 0; i < items.length; i++) {
const item = items[i];
console.info('ITEM', item);
const relativePath = item.path.substr(path.length + 1);
output.push(this.rnfsStatToStd_(item, relativePath));
// let stat = await this.stat(path + '/' + items[i]);
// if (!stat) continue; // Has been deleted between the readdir() call and now
// stat.path = stat.path.substr(path.length + 1);
// output.push(stat);
}
console.info('READ DIR', path);
console.info(output);
return output;
}