We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With the currently flow, certain things are not possible, while colorizing with a log format.
e.g.
new winston.transports.Papertrail({ host: process.env.LOG_HOST, port: process.env.LOG_PORT, colorize: true, logFormat: function(level, message) { return level.toUpperCase() + ' | ' + message; }, program: os.hostname() })
as the colorized level, is uppercased as well, becoming [32MINFO[39M instead of [32mINFO[39m
[32MINFO[39M
[32mINFO[39m
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With the currently flow, certain things are not possible, while colorizing with a log format.
e.g.
as the colorized level, is uppercased as well, becoming
[32MINFO[39M
instead of[32mINFO[39m
The text was updated successfully, but these errors were encountered: