Less logging

This commit is contained in:
Jeremy Ruston 2024-02-21 17:55:13 +00:00
parent b8c1c6c8de
commit 1eecfb6b3a
2 changed files with 0 additions and 3 deletions

View File

@ -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

View File

@ -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