You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear @wmluke ,
I am using bugsnag and it is very helpful wrapper for bugsnag. However I am facing issue for setting autonotify to false. Giving value false in boolean, "false" in string or 0 in integer does not prevent to send automatic messages to bugsnag dashboard. Please help. Following is the code I am trying:
bugsnagProvider
.noConflict()
.apiKey('...')
.releaseStage('development')
.appVersion('0.2.1')
.autoNotify(false) // autonotify("false"), autonotify(0), all of these do not work
.beforeNotify(['$log', function ($log) {
return function (error, metaData) {
$log.debug(error.name);
return true;
};
}]);
Kind Regards,
Haider Mahmood
The text was updated successfully, but these errors were encountered:
Dear @wmluke ,
I am using bugsnag and it is very helpful wrapper for bugsnag. However I am facing issue for setting autonotify to false. Giving value false in boolean, "false" in string or 0 in integer does not prevent to send automatic messages to bugsnag dashboard. Please help. Following is the code I am trying:
bugsnagProvider
.noConflict()
.apiKey('...')
.releaseStage('development')
.appVersion('0.2.1')
.autoNotify(false) // autonotify("false"), autonotify(0), all of these do not work
.beforeNotify(['$log', function ($log) {
return function (error, metaData) {
$log.debug(error.name);
return true;
};
}]);
Kind Regards,
Haider Mahmood
The text was updated successfully, but these errors were encountered: