1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-11-23 02:34:53 +00:00

Improve command line logging (#3704)

* Initial improvements

* Fix broken merge
This commit is contained in:
Jeremy Ruston
2024-06-06 16:46:10 +01:00
committed by GitHub
parent 4be81b2bf4
commit 25ec52b912
5 changed files with 28 additions and 11 deletions

View File

@@ -120,7 +120,7 @@ Command.prototype.fetchFile = function(url,options,callback,redirectCount) {
}
});
response.on("error",function(e) {
console.log("Error on GET request: " + e);
self.commander.log("Error on GET request: " + e);
callback(e);
});
});