Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to handle don’t report in Angular Rollbar Service #1090

Open
hebaahmedsaleh opened this issue Jan 11, 2023 · 1 comment
Open

How to handle don’t report in Angular Rollbar Service #1090

hebaahmedsaleh opened this issue Jan 11, 2023 · 1 comment

Comments

@hebaahmedsaleh
Copy link

I am using Angular v12 and implemented Rollbar according to docs I have a class for Rollbar to report issues


import { environment } from '@env';
import * as Rollbar from 'rollbar';
import { Injectable, Inject, InjectionToken, ErrorHandler } from '@angular/core';

const rollbarConfig = { // config }

export const RollbarService = new InjectionToken<Rollbar>('rollbar');

@Injectable()
export class RollbarErrorHandler implements ErrorHandler {
  constructor(@Inject(RollbarService) private rollbar: Rollbar) {}

  handleError(error: any): void {
    if (environment.production) {
      if (error.originalError || error.name != 'HttpErrorResponse') {
        console.error(error.originalError || error);
        this.rollbar.error(error.originalError || error);
      }
    }
  }
}

export function rollbarFactory() {
  return new Rollbar(rollbarConfig);
}

The problem is that the error received in handleerror is always the message so how I can receive it as an error object which I got from failure of api called for example ?

@sihu
Copy link

sihu commented Mar 2, 2023

hey @hebaahmedsaleh. maybe too late for you but maybe useful for the next with the same problem. one thing you could try is to use the callback (described here: https://docs.rollbar.com/docs/javascript#usage):

Rollbar.error(e, function(err, data) {
  if (err) {
    console.log("Error while reporting error to Rollbar: ", e);
  } else {
    console.log("Error successfully reported to Rollbar. UUID:", data.result.uuid);
  }
});

It might be that your token has not the permission needed to log? I also had some struggles to properly log it with angular, since not everything returned is an error (e.g. #975)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants