1
0
Fork 0
peertube/server/helpers/logger.ts

42 lines
1.1 KiB
TypeScript
Raw Normal View History

// Thanks http://tostring.it/2014/06/23/advanced-logging-with-nodejs/
2017-05-15 20:22:03 +00:00
import mkdirp = require('mkdirp')
import path = require('path')
import winston = require('winston')
2015-06-09 15:41:40 +00:00
2017-05-15 20:22:03 +00:00
// Do not use barrel (dependencies issues)
import { CONFIG } from '../initializers/constants'
2015-06-09 15:41:40 +00:00
2017-05-15 20:22:03 +00:00
const label = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
// Create the directory if it does not exist
2017-05-15 20:22:03 +00:00
mkdirp.sync(CONFIG.STORAGE.LOG_DIR)
2016-03-16 21:29:27 +00:00
const logger = new winston.Logger({
transports: [
new winston.transports.File({
level: 'debug',
2017-05-15 20:22:03 +00:00
filename: path.join(CONFIG.STORAGE.LOG_DIR, 'all-logs.log'),
handleExceptions: true,
json: true,
maxsize: 5242880,
maxFiles: 5,
2016-12-11 20:50:51 +00:00
colorize: false,
prettyPrint: true
}),
new winston.transports.Console({
level: 'debug',
2016-05-07 13:41:20 +00:00
label: label,
handleExceptions: true,
humanReadableUnhandledException: true,
json: false,
2016-12-11 20:50:51 +00:00
colorize: true,
prettyPrint: true
})
],
exitOnError: true
})
2015-06-09 15:41:40 +00:00
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
2017-05-15 20:22:03 +00:00
export { logger }