Ensure the log directory is created before instanciate the logger
This commit is contained in:
parent
2eb5a041b3
commit
320d627544
1 changed files with 5 additions and 0 deletions
|
@ -2,11 +2,16 @@
|
|||
'use strict'
|
||||
|
||||
const config = require('config')
|
||||
const mkdirp = require('mkdirp')
|
||||
const path = require('path')
|
||||
const winston = require('winston')
|
||||
winston.emitErrs = true
|
||||
|
||||
const logDir = path.join(__dirname, '..', '..', config.get('storage.logs'))
|
||||
|
||||
// Create the directory if it does not exist
|
||||
mkdirp.sync(logDir)
|
||||
|
||||
const logger = new winston.Logger({
|
||||
transports: [
|
||||
new winston.transports.File({
|
||||
|
|
Loading…
Reference in a new issue