be8875c9b6
The goal here is to keep the same structure than the other examples. Also, considering that it has a "frontend" folder, the equivalent for the server should be "backend". Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
9 lines
296 B
JavaScript
9 lines
296 B
JavaScript
const path = require('path');
|
|
const filename = path.join(__dirname, '../../logs/project.log');
|
|
|
|
//you can change format according to you
|
|
const log = require('simple-node-logger').createSimpleLogger( {
|
|
logFilePath:filename,
|
|
timestampFormat:'YYYY-MM-DD HH:mm:ss'}
|
|
);
|
|
module.exports = {log}; |