PeerTube/server/helpers/logger.ts

40 lines
1.0 KiB
TypeScript
Raw Normal View History

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