mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-10 12:26:35 +03:00
Ensure the log directory is created before instanciate the logger
This commit is contained in:
parent
2eb5a041b3
commit
320d627544
@ -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 New Issue
Block a user