Logging with Rebound
@Rebound({
onRetry: (err, attempt) => {
console.log(`[Rebound] Retry #${attempt}: ${err.message}`);
},
})
Rebound works well with:
- Winston
- Pino
- Bunyan
- Sentry
- Datadog
@Rebound({
onRetry: (err, attempt) => {
console.log(`[Rebound] Retry #${attempt}: ${err.message}`);
},
})
Rebound works well with: