signale
signale copied to clipboard
Highly configurable logging utility
Hi! I wanted a more readable output for longer messages so I went ahead and implemented that. Here's a sample output and corresponding code ``` signale.config({ splitLongLines: true, //split to...
What's inside: 1. Added the "alert" logger, it is intended for messages that must be seen, for example, to manually catch an error. This sense is near to old "debug"...
this PR adds the line of the file which calls signale, this way you can go directly to that line of the file which is printed and see what the...
**Describe the bug** signale.debug() prints red badge but it's blue on the screenshots **To Reproduce** ```js signale.debug(true) ``` **Expected behavior** Should print blue badge according to the screenshots in README...
Hi, I would like to install signale on popos/ubuntu. Is there a way to do it? Do we need to wait for a snap release? Thanks!
Awesome project. It would be nice to display a progress bar that is dynamically updated. Useful for downloading content. Similar to [node-progress](https://github.com/visionmedia/node-progress) Something like... ```js signale.progress('Downloading content', {current:0, total:100}) //...
It seems like this package isn't maintained anymore. Am I mistaken? A few PR are hanging, nothing useful has been merged since oct 2019.
Is it possible to have multiple interactive loggers that update independently of each other (either separated by scope or `Signale` instance)? It seems that the current behavior is that the...
**Describe the bug** A clear and concise description of what the bug is. ``` private logFile: WriteStream = fs.createWriteStream(process.cwd() + path.join('////', 'logs', 'watchguard.txt'), { flags: 'a', encoding: 'utf8', autoClose: true...