mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 19:42:24 +02:00
Server: put config in constants
This commit is contained in:
parent
5c39adb731
commit
e861452fb2
10 changed files with 72 additions and 65 deletions
|
@ -1,23 +1,23 @@
|
|||
// Thanks http://tostring.it/2014/06/23/advanced-logging-with-nodejs/
|
||||
'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'))
|
||||
const label = config.get('webserver.host') + ':' + config.get('webserver.port')
|
||||
const constants = require('../initializers/constants')
|
||||
|
||||
const label = constants.CONFIG.WEBSERVER.HOST + ':' + constants.CONFIG.WEBSERVER.PORT
|
||||
|
||||
// Create the directory if it does not exist
|
||||
mkdirp.sync(logDir)
|
||||
mkdirp.sync(constants.CONFIG.STORAGE.LOG_DIR)
|
||||
|
||||
const logger = new winston.Logger({
|
||||
transports: [
|
||||
new winston.transports.File({
|
||||
level: 'debug',
|
||||
filename: path.join(logDir, 'all-logs.log'),
|
||||
filename: path.join(constants.CONFIG.STORAGE.LOG_DIR, 'all-logs.log'),
|
||||
handleExceptions: true,
|
||||
json: true,
|
||||
maxsize: 5242880,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue