]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/logger.js
Fix opengraph url tag
[github/Chocobozzz/PeerTube.git] / server / helpers / logger.js
CommitLineData
9f10b292
C
1// Thanks http://tostring.it/2014/06/23/advanced-logging-with-nodejs/
2'use strict'
8c308c2b 3
320d6275 4const mkdirp = require('mkdirp')
f0f5567b
C
5const path = require('path')
6const winston = require('winston')
9f10b292 7winston.emitErrs = true
8c308c2b 8
e861452f
C
9const constants = require('../initializers/constants')
10
3737bbaf 11const label = constants.CONFIG.WEBSERVER.HOSTNAME + ':' + constants.CONFIG.WEBSERVER.PORT
320d6275
C
12
13// Create the directory if it does not exist
e861452f 14mkdirp.sync(constants.CONFIG.STORAGE.LOG_DIR)
320d6275 15
f0f5567b 16const logger = new winston.Logger({
9f10b292
C
17 transports: [
18 new winston.transports.File({
19 level: 'debug',
e861452f 20 filename: path.join(constants.CONFIG.STORAGE.LOG_DIR, 'all-logs.log'),
9f10b292
C
21 handleExceptions: true,
22 json: true,
23 maxsize: 5242880,
24 maxFiles: 5,
25 colorize: false
26 }),
27 new winston.transports.Console({
28 level: 'debug',
f1dae018 29 label: label,
9f10b292
C
30 handleExceptions: true,
31 humanReadableUnhandledException: true,
32 json: false,
33 colorize: true
34 })
35 ],
36 exitOnError: true
37})
8c308c2b 38
9f10b292
C
39logger.stream = {
40 write: function (message, encoding) {
41 logger.info(message)
8c308c2b 42 }
9f10b292 43}
c45f7f84 44
9f10b292 45// ---------------------------------------------------------------------------
c45f7f84 46
9f10b292 47module.exports = logger