Readme update, and small log fix

This commit is contained in:
YourFriendlyNeighborhoodDealer 2018-12-21 10:18:32 +01:00
parent 989b761b0d
commit a9235cc1b0
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
Question server
Install:
npm install connect-busboy ejs express-layout querystring express
npm install express connect-busboy ejs express-layout querystring express
some stuff maybe missing

View file

@ -36,7 +36,7 @@ function WriteFileAsync(content, path) {
function AppendToFile(data, file) {
fs.appendFile(file, "\n" + data, function(err) {
if (err)
logger.Log("[ERR ]: Error writing log file: " + path + " (sync)", logger.GetColor("redbg"));
logger.Log("[ERR ]: Error writing log file: " + file + " (sync)", logger.GetColor("redbg"));
});
}