# Insight Hub (Bugsnag) notifier for Erlang
[](https://github.com/dnsimple/bugsnag-erlang/actions/workflows/ci.yml)
[](https://hex.pm/packages/bugsnag_erlang)
[](https://hexdocs.pm/bugsnag_erlang/)
[](https://hex.pm/packages/bugsnag_erlang)
[](https://coveralls.io/github/dnsimple/bugsnag-erlang?branch=main)
## Usage
You may send custom errors directly:
```erlang
bugsnag:notify(error, fake, "Testing bugsnag with a manual error report", no_module, 0).
```
Or use the Erlang error logger:
```erlang
error_logger:error_msg("A sample error caught by the bugsnag error logger.").
```
Or `logger`:
```erlang
?LOG_ERROR(#{what => example_error, text => "A sample error caught by the bugsnag logger handler"}).
```
When embedding, make sure to set up the configuration elements in your `sys.config` (or other config file),
See `m:bugsnag` for configuration details.
## Testing
To test the codebase:
```shell
make test
```
## Formatting
To format the codebase
```shell
make format
```