aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/logger.ts
blob: 3c35e41e066952622d820e0f3b66170edd7c29a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Thanks http://tostring.it/2014/06/23/advanced-logging-with-nodejs/
import mkdirp = require('mkdirp')
import path = require('path')
import winston = require('winston')

// Do not use barrel (dependencies issues)
import { CONFIG } from '../initializers/constants'

const label = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT

// Create the directory if it does not exist
mkdirp.sync(CONFIG.STORAGE.LOG_DIR)

const logger = new winston.Logger({
  transports: [
    new winston.transports.File({
      level: 'debug',
      filename: path.join(CONFIG.STORAGE.LOG_DIR, 'all-logs.log'),
      handleExceptions: true,
      json: true,
      maxsize: 5242880,
      maxFiles: 5,
      colorize: false,
      prettyPrint: true
    }),
    new winston.transports.Console({
      level: 'debug',
      label: label,
      handleExceptions: true,
      humanReadableUnhandledException: true,
      json: false,
      colorize: true,
      prettyPrint: true
    })
  ],
  exitOnError: true
})

// TODO: useful?
// logger.stream = {
//   write: function (message) {
//     logger.info(message)
//   }
// }

// ---------------------------------------------------------------------------

export { logger }