logger.warn("Event dropped due to being internal Sentry Error.\nEvent: "+getEventDescription(event));
returntrue;
}
if(this._isIgnoredError(event,options)){
logger.warn("Event dropped due to being matched by `ignoreErrors` option.\nEvent: "+getEventDescription(event));
returntrue;
}
if(this._isDeniedUrl(event,options)){
logger.warn("Event dropped due to being matched by `denyUrls` option.\nEvent: "+getEventDescription(event)+".\nUrl: "+this._getEventFilterUrl(event));
returntrue;
}
if(!this._isAllowedUrl(event,options)){
logger.warn("Event dropped due to not being matched by `allowUrls` option.\nEvent: "+getEventDescription(event)+".\nUrl: "+this._getEventFilterUrl(event));