Skip to content

Instantly share code, notes, and snippets.

@vikas5914
Last active December 12, 2023 14:09
Show Gist options
  • Star 18 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save vikas5914/cf568748ac89446e19ecd5e2e6900443 to your computer and use it in GitHub Desktop.
Save vikas5914/cf568748ac89446e19ecd5e2e6900443 to your computer and use it in GitHub Desktop.
Custom Logger Library with winston
const { createLogger, format, transports } = require('winston')
const moment = require('moment')
// set default log level.
const logLevel = 'info'
var logger = createLogger({
level: logLevel,
levels: {
fatal: 0,
crit: 1,
warn: 2,
info: 3,
debug: 4,
trace: 5
},
format: format.combine(
format.prettyPrint(),
format.timestamp({
format: 'DD-MM-YYYY hh:mm:ss A'
}),
format.printf(nfo => {
return `${nfo.timestamp} - ${nfo.level}: ${nfo.message}`
})
),
transports: [
new transports.Console(),
new transports.File({
filename: 'bot.log'
})
]
})
// Extend logger object to properly log 'Error' types
var origLog = logger.log
logger.log = function (level, msg) {
if (msg instanceof Error) {
var args = Array.prototype.slice.call(arguments)
args[1] = msg.stack
origLog.apply(logger, args)
} else {
origLog.apply(logger, arguments)
}
}
/* LOGGER EXAMPLES
var log = require('./log.js')
log.trace('testing')
log.debug('testing')
log.info('testing')
log.warn('testing')
log.crit('testing')
log.fatal('testing')
*/
module.exports = logger
=
@atjshop
Copy link

atjshop commented Sep 15, 2020

hi, look for the same and this is useful.
questions:

  1. what is the module.exports.stream for? how to use it?
  2. is it possible to capture the caller file, caller function or line number?

thanks!

@newtonjose
Copy link

Working perfect for me. Tks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment