From bab14b70532c1a771fd2294661b08cc3c9650207 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Mon, 19 Feb 2024 16:29:14 +0000 Subject: [PATCH] Logging --- plugins/tiddlywiki/multiwikiserver/modules/init.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/tiddlywiki/multiwikiserver/modules/init.js b/plugins/tiddlywiki/multiwikiserver/modules/init.js index b56161ea9..810cb1638 100644 --- a/plugins/tiddlywiki/multiwikiserver/modules/init.js +++ b/plugins/tiddlywiki/multiwikiserver/modules/init.js @@ -19,6 +19,7 @@ exports.before = ["story"]; exports.synchronous = true; exports.startup = function() { +console.log(`Initialising MWSS`) var path = require("path"); // Install the sqlite3 global namespace $tw.sqlite3 = { @@ -30,6 +31,7 @@ exports.startup = function() { $tw.sqlite3.Database = require("better-sqlite3"); } catch(e) { } +console.log(`Successfully required better-sqlite3`) if(!$tw.sqlite3.Database) { logger.alert("The plugin 'tiddlywiki/multiwikiserver' requires the better-sqlite3 npm package to be installed. Run 'npm install' in the root of the TiddlyWiki repository"); return; @@ -44,6 +46,7 @@ exports.startup = function() { inboxPath: path.resolve($tw.boot.wikiPath,"store/inbox"), store: store }); +console.log(`Initialised sqlTiddlerStore`) $tw.mws = { store: store, uploadManager: uploadManager