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

https://github.com/softonic/hapi-error-logger

Hapi plugin to log errors on requests
https://github.com/softonic/hapi-error-logger

Last synced: about 1 year ago
JSON representation

Hapi plugin to log errors on requests

Awesome Lists containing this project

README

          

# @softonic/hapi-error-logger

Hapi plugin to log errors on requests

## Installation

```bash
npm install @softonic/hapi-error-logger
```

## Usage

```js
// CommonJS
// const HapiErrorLogger = require('@softonic/hapi-error-logger');

// ES2016
import HapiErrorLogger from '@softonic/hapi-error-logger';

await server.register({
plugin: HapiErrorLogger,
options: {
logger: bunyan.createLogger({ name: 'myapp' }),
// whitelistHeaders and blacklistHeaders should not be used together
whitelistRequestHeaders: ['host', 'accept', 'content-type'],
blacklistRequestHeaders: ['authorization'],
isLoggableRequestError: error => error.output.statusCode >= 500
}
});
```

## Testing

Clone the repository and execute:

```bash
npm test
```

## Contribute

1. Fork it: `git clone https://github.com/softonic/@softonic/hapi-error-logger.git`
2. Create your feature branch: `git checkout -b feature/my-new-feature`
3. Commit your changes: `git commit -am 'Added some feature'`
4. Check the build: `npm run build`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D