1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 10:29:54 +00:00

Remove extraneous console.log

I’ve leaving the one at line 91 because it might be useful for field
debugging…
This commit is contained in:
Jermolene 2017-02-11 12:59:18 +00:00
parent 3708f6c8e4
commit b5482d8dba

View File

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