signale icon indicating copy to clipboard operation
signale copied to clipboard

Highly configurable logging utility

Results 40 signale issues
Sort by recently updated
recently updated
newest added

Fixes #96

enhancement

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...

enhancement

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"...

enhancement

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...

enhancement

**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}) //...

feature request

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...

feature request

**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...