Last active
December 12, 2023 14:09
-
-
Save vikas5914/cf568748ac89446e19ecd5e2e6900443 to your computer and use it in GitHub Desktop.
Custom Logger Library with winston
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
= |
hi, look for the same and this is useful.
questions:
- what is the module.exports.stream for? how to use it?
- is it possible to capture the caller file, caller function or line number?
thanks!
Working perfect for me. Tks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have corrected the code , write logs into the respective file