本文整理汇总了TypeScript中@sentry/browser.captureException函数的典型用法代码示例。如果您正苦于以下问题:TypeScript captureException函数的具体用法?TypeScript captureException怎么用?TypeScript captureException使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了captureException函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: fetchIstUsers
function* fetchIstUsers() {
try {
const { users }: SagaCall<typeof API.fetchIstUsers> = yield call(API.fetchIstUsers);
yield put(updateIstUsers(users));
} catch (e) {
captureException(e);
}
}
示例2:
Sentry.withScope((scope) => {
scope.setTag('context', name);
if (errorInfo) {
Object.keys(errorInfo).forEach((key) => {
scope.setExtra(key, errorInfo[key]);
});
}
Sentry.captureException(e);
});
示例3: each
Sentry.withScope((scope) => {
each(extra, (data, key) => {
scope.setExtra(key, extra[key]);
});
Sentry.captureException(error);
console.error(error); // eslint-disable-line no-console
if (size(extra) > 0) console.error(extra); // eslint-disable-line no-console
});
示例4: captureException
export const reportException = (error: string | Error, extra?: any) => {
if (process.env.NODE_ENV === 'production' && SENTRY_URL) {
captureException(error);
} else {
/* tslint:disable */
console.error('====================================');
console.error(error);
console.log(extra);
console.error('====================================');
}
};
示例5: handleError
public handleError(err: any): void {
if (!isProdMode() && err && err.message && err.message.indexOf('cordova_not_available') !== -1) {
return;
}
if (isProdMode()) {
// Only log errors to remote when running in production
try {
SentryClient.captureException(err.originalError || err);
} catch (e) {
console.error(e);
}
}
super.handleError(err);
}
示例6: handleError
handleError(error) {
Sentry.captureException(error.originalError || error);
throw error;
}
示例7: sendError
sendError(error) {
if (environment.sentry) {
Sentry.captureException(error.originalError || error);
}
}
示例8: handleError
handleError(error) {
if (environment.sentry) {
Sentry.captureException(error.originalError || error);
}
throw error;
}