1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-02-17 03:20:02 +00:00

Get rid of extraneous logging on filesystemadaptor

This commit is contained in:
Jermolene 2013-12-11 13:13:48 +00:00
parent a9c209c62e
commit 67072371a0

View File

@ -182,7 +182,6 @@ Load a tiddler and invoke the callback with (err,tiddlerFields)
We don't need to implement loading for the file system adaptor, because all the tiddler files will have been loaded during the boot process.
*/
FileSystemAdaptor.prototype.loadTiddler = function(title,callback) {
console.log("FileSystem: Loading",title);
callback(null,null);
};