This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as rg4js from 'raygun4js'; | |
import { ErrorHandler } from '@angular/core'; | |
const VERSION_NUMBER = '1.0.0.0'; | |
rg4js('apiKey', 'YourApiKeyGoesHere'); | |
rg4js('setVersion', VERSION_NUMBER); | |
rg4js('enableCrashReporting', true); | |
export class RaygunErrorHandler implements ErrorHandler { | |
handleError(e: any) { | |
rg4js('send', { | |
error: e, | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment