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

Removed log statement

This commit is contained in:
Laurent Cozic 2019-05-19 12:04:09 +01:00
parent 94cddda6d0
commit 4c935b78f9

View File

@ -114,7 +114,7 @@ class ResourceService extends BaseService {
static async autoSetFileSize(resourceId, filePath) {
const itDoes = await shim.fsDriver().waitTillExists(filePath);
if (!itDoes) {
this.logger().warn('Trying to set file size on non-existent resource:', resourceId, filePath);
// this.logger().warn('Trying to set file size on non-existent resource:', resourceId, filePath);
return;
}
const fileStat = await shim.fsDriver().stat(filePath);