Viney
Viney
I want to use this library for a small project where I have two modules. I want to control the logging (primarily the log level) independently and on the fly...
## Expected/Wanted Behavior If a cron job app is created and configured to run every 2 minutes, it should run every 2 minutes. This behavior should be independent of the...
I was just checking how the dynamic log level change would work and tried below code: ``` const appLogger = require('simple-node-logger').createSimpleLogger(); appLogger.setLevel('debug'); appLogger.debug('appLogger:debug'); appLogger.info('appLogger:info'); appLogger.warn('appLogger:warn'); appLogger.error('appLogger:error'); appLogger.setLevel('warn'); appLogger.debug('appLogger:debug 2'); appLogger.info('appLogger:info...