Files
freeCodeCamp/client/src/utils/report-error.js
2018-11-29 15:12:15 +03:00

8 lines
257 B
JavaScript

/* global Rollbar ENVIRONMENT */
export function reportClientSideError(e, message = 'Unhandled error') {
return ENVIRONMENT === 'production'
? Rollbar.error(`Client: ${message}`, e)
: console.error(`Stub Rollbar call - Client: ${message}`, e);
}