1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-11-19 00:35:14 +00:00

Revert "Improve command line logging (#3704)"

This reverts commit 25ec52b912.
This commit is contained in:
Jeremy Ruston
2024-06-07 18:09:50 +01:00
parent 36a9e3f54e
commit 6833ccdb97
5 changed files with 11 additions and 28 deletions

View File

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