diff --git a/core/modules/server/server.js b/core/modules/server/server.js index 105729e76..6563f040b 100644 --- a/core/modules/server/server.js +++ b/core/modules/server/server.js @@ -84,7 +84,6 @@ function Server(options) { }); // Load route handlers $tw.modules.forEachModuleOfType("route", function(title,routeDefinition) { - // console.log("Loading server route " + title); self.addRoute(routeDefinition); }); // Initialise the http vs https diff --git a/plugins/tiddlywiki/multiwikiserver/modules/init.js b/plugins/tiddlywiki/multiwikiserver/modules/init.js index 10ca22040..f32d2b465 100644 --- a/plugins/tiddlywiki/multiwikiserver/modules/init.js +++ b/plugins/tiddlywiki/multiwikiserver/modules/init.js @@ -19,7 +19,6 @@ exports.before = ["story"]; exports.synchronous = true; exports.startup = function() { -console.log(`Initialising MWS`) var path = require("path"); // Install the sqlite3 global namespace $tw.sqlite3 = { @@ -46,7 +45,6 @@ console.log(`Successfully required better-sqlite3`) inboxPath: path.resolve($tw.boot.wikiPath,"store/inbox"), store: store }); -console.log(`Initialised sqlTiddlerStore`) $tw.mws = { store: store, uploadManager: uploadManager