Created
May 12, 2017 07:37
-
-
Save mrister/84cb94226d4fb63d2bc672778afcf226 to your computer and use it in GitHub Desktop.
Multiple Winston loggers
This file contains hidden or 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 production = winston.loggers.get('production'); | |
production.info('logging from your IoC container-based logger'); | |
const development = winston.loggers.get('development'); | |
development.debug('logging from your IoC container-based logger - development'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment