diff --git a/template/wiki/plugins/linonetwo/watch-fs/get-can-sync.js b/template/wiki/plugins/linonetwo/watch-fs/get-can-sync.js index 98e192b1..362bed87 100644 --- a/template/wiki/plugins/linonetwo/watch-fs/get-can-sync.js +++ b/template/wiki/plugins/linonetwo/watch-fs/get-can-sync.js @@ -6,7 +6,6 @@ GET /watch-fs-can-sync \*/ (function () { exports.method = 'GET'; - exports.aaa = 'bbb'; // route should start with something https://github.com/Jermolene/TiddlyWiki5/issues/4807 exports.path = /^\/linonetwo\/watch-fs-can-sync$/; @@ -14,8 +13,6 @@ GET /watch-fs-can-sync exports.handler = function handler(request, response, state) { response.writeHead(200, { 'Content-Type': 'application/json' }); const { canSync } = state.wiki.watchFs; - // DEBUG: console - console.log(`canSync`, canSync); response.end(JSON.stringify(canSync), 'utf8'); }; })();