From b5482d8dba7de443e048b8e1b3c01f915f7ed2da Mon Sep 17 00:00:00 2001 From: Jermolene Date: Sat, 11 Feb 2017 12:59:18 +0000 Subject: [PATCH] Remove extraneous console.log MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I’ve leaving the one at line 91 because it might be useful for field debugging… --- plugins/tiddlywiki/filesystem/filesystemadaptor.js | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/tiddlywiki/filesystem/filesystemadaptor.js b/plugins/tiddlywiki/filesystem/filesystemadaptor.js index 8b1621276..f270b81df 100644 --- a/plugins/tiddlywiki/filesystem/filesystemadaptor.js +++ b/plugins/tiddlywiki/filesystem/filesystemadaptor.js @@ -119,7 +119,6 @@ FileSystemAdaptor.prototype.generateTiddlerBaseFilepath = function(title) { if(pathNameFilters) { var source = this.wiki.makeTiddlerIterator([title]); baseFilename = this.findFirstFilter(pathNameFilters.split("\n"),source); -console.log("baseFilename",baseFilename) if(baseFilename) { // Interpret "/" and "\" as path separator baseFilename = baseFilename.replace(/\/|\\/g,path.sep);