Add more colour to command line output

This commit is contained in:
Jermolene
2017-09-04 14:55:12 +01:00
parent 50b0004481
commit 51b1ead5c9
5 changed files with 41 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ var fs = $tw.node ? require("fs") : null,
function FileSystemAdaptor(options) {
var self = this;
this.wiki = options.wiki;
this.logger = new $tw.utils.Logger("FileSystem");
this.logger = new $tw.utils.Logger("filesystem",{colour: "blue"});
// Create the <wiki>/tiddlers folder if it doesn't exist
$tw.utils.createDirectory($tw.boot.wikiTiddlersPath);
}