Pārlūkot izejas kodu

remove old attachment storagePath log message

Martin Filser 3 gadi atpakaļ
vecāks
revīzija
1f277af722
1 mainītis faili ar 0 papildinājumiem un 1 dzēšanām
  1. 0 1
      models/attachments.js

+ 0 - 1
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 });