You've already forked joplin
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user