fs.readFile(‘C:/Windows/win111.ini’,‘utf8’, function(err, content) {
if (err) {
logger.error(‘Something went wrong - could not open file’);
logger.on(‘finish’, function() {
// all logs are written
console.log(‘log is ready and on disk’)
process.exit(1)
})
logger.end();
return
//console.log('Something went wrong - could not open file');
//?process.exit(0) -> success
//?prcess.exit(non zero) -> failure
//process.exit(1)
}
console.log(content);
})
כאשר הוספתי את הפקודה logger.end לא נכתב לקובץ כלום, ללא פקודה זו הלוג נכתב כראוי לקובץ