simple-node-logger icon indicating copy to clipboard operation
simple-node-logger copied to clipboard

simple multi-level logger for console and file

Results 37 simple-node-logger issues
Sort by recently updated
recently updated
newest added

I gave this logger module a try as I wanted to use a simple alternative to winston, but this logger is close to being useless. The fundamental flaw is that...

To convert UTC time to Local you have to use moment.local().

The server has the time zone UTC but I want to log GMT-3 or GMT-6 is it possible to do that? Thanks!

My configuration: ``` options = { logFilePath: filePath, timestampFormat: 'YYYY-MM-DD HH:mm:ss.SSS' }, log = SimpleNodeLogger.createSimpleLogger(options); ``` When check with open file using ```lsof```, the log file still open. if i...

`log.info('State: ', a, b, c);` prints a b and c values together without any space. Is possible to use a list of arguments like in `console.log()` where a single space...

It create a file and write a log. everything is working. The problem is log written in single line. but, i need to write every log in separate line. My...

Is there a way to specify max file size when creating createSimpleFileLogger?