From 1f277af7223f13cea91c1928dd085c8746b30e3c Mon Sep 17 00:00:00 2001 From: Martin Filser Date: Thu, 10 Mar 2022 23:16:40 +0100 Subject: [PATCH] remove old attachment storagePath log message --- models/attachments.js | 1 - 1 file changed, 1 deletion(-) diff --git a/models/attachments.js b/models/attachments.js index 4dd70eaa1..6d2e95f0e 100644 --- a/models/attachments.js +++ b/models/attachments.js @@ -85,7 +85,6 @@ if (Meteor.isServer) { Meteor.startup(() => { Attachments.collection._ensureIndex({ 'meta.cardId': 1 }); const storagePath = Attachments.storagePath(); - console.log("Meteor.startup check storagePath: ", storagePath); if (!fs.existsSync(storagePath)) { console.log("create storagePath because it doesn't exist: " + storagePath); fs.mkdirSync(storagePath, { recursive: true });