Skip to content

Commit

Permalink
added synchronous mode for log writing (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
tts-sdrissen authored Jul 19, 2023
1 parent d37b1cd commit 9f85042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function deploy(config, ready) {
let txtLogger = undefined;
if (config.log !== "") {
txtLogger = fs.createWriteStream(config.log, {
flags: 'a'
flags: 'as'
});
}

Expand Down

0 comments on commit 9f85042

Please sign in to comment.