An open API service indexing awesome lists of open source software.

https://github.com/skitsanos/slack-logger

Post errors and exceptions directly to your Slack channel
https://github.com/skitsanos/slack-logger

slack slack-api slack-app slack-webhook slackapi

Last synced: about 2 months ago
JSON representation

Post errors and exceptions directly to your Slack channel

Awesome Lists containing this project

README

          

# slack-logger

```js
const log = new SlackLogger('YOUR_TOKEN');

log.raw('simple text message');

log.error(new Error('err happened'));

log.message('friendly message from the app');
```