mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-20 03:02:02 -05:00
8 lines
257 B
JavaScript
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);
|
|
}
|