1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Chore: Make debugging log less verbose for link replacement code

This commit is contained in:
Laurent Cozic 2020-11-30 18:37:58 +00:00
parent 751d0e0745
commit e8d216016e

View File

@ -179,7 +179,7 @@ class Note extends BaseItem {
pathsToTry.push(Resource.baseRelativeDirectoryPath());
}
this.logger().debug('replaceResourceExternalToInternalLinks', 'options:', options, 'pathsToTry:', pathsToTry, 'body:', body);
this.logger().debug('replaceResourceExternalToInternalLinks', 'options:', options, 'pathsToTry:', pathsToTry);
for (const basePath of pathsToTry) {
const reStrings = [
@ -200,7 +200,7 @@ class Note extends BaseItem {
body = body.replace(/\(joplin:\/\/([a-zA-Z0-9]{32})\)/g, '(:/$1)');
}
this.logger().debug('replaceResourceExternalToInternalLinks result', body);
// this.logger().debug('replaceResourceExternalToInternalLinks result', body);
return body;
}