1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-12 22:57:38 +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

@ -92,14 +92,12 @@ class Synchronizer {
if (local) {
let s = [];
s.push(local.id);
if ('title' in local) s.push('"' + local.title + '"');
line.push('(Local ' + s.join(', ') + ')');
}
if (remote) {
let s = [];
s.push(remote.id ? remote.id : remote.path);
if ('title' in remote) s.push('"' + remote.title + '"');
line.push('(Remote ' + s.join(', ') + ')');
}