UNPKG

@sentry/core

Version:
61 lines (49 loc) 1.06 kB
Object.defineProperty(exports, '__esModule', { value: true }); const utils = require('@sentry/utils'); const DEFAULT_KEY = 'cause'; const DEFAULT_LIMIT = 5; /** Adds SDK info to an event. */ class LinkedErrors { /** * @inheritDoc */ static __initStatic() {this.id = 'LinkedErrors';} /** * @inheritDoc */ /** * @inheritDoc */ /** * @inheritDoc */ /** * @inheritDoc */ constructor(options = {}) { this._key = options.key || DEFAULT_KEY; this._limit = options.limit || DEFAULT_LIMIT; this.name = LinkedErrors.id; } /** @inheritdoc */ setupOnce() { // noop } /** * @inheritDoc */ preprocessEvent(event, hint, client) { const options = client.getOptions(); utils.applyAggregateErrorsToEvent( utils.exceptionFromError, options.stackParser, options.maxValueLength, this._key, this._limit, event, hint, ); } } LinkedErrors.__initStatic(); exports.LinkedErrors = LinkedErrors; //# sourceMappingURL=linkederrors.js.map