@@ -53,7 +53,6 @@ import {
53
53
import { createClientReportEnvelope } from './utils-hoist/clientreport' ;
54
54
import { dsnToString , makeDsn } from './utils-hoist/dsn' ;
55
55
import { addItemToEnvelope , createAttachmentEnvelopeItem } from './utils-hoist/envelope' ;
56
- import { SentryError } from './utils-hoist/error' ;
57
56
import { isParameterizedString , isPlainObject , isPrimitive , isThenable } from './utils-hoist/is' ;
58
57
import { logger } from './utils-hoist/logger' ;
59
58
import { checkOrSetAlreadyCaught , uuid4 } from './utils-hoist/misc' ;
@@ -69,6 +68,41 @@ import { _getSpanForScope } from './utils/spanOnScope';
69
68
const ALREADY_SEEN_ERROR = "Not capturing exception because it's already been captured." ;
70
69
const MISSING_RELEASE_FOR_SESSION_ERROR = 'Discarded session because of missing or non-string release' ;
71
70
71
+ const INTERNAL_ERROR_SYMBOL = Symbol . for ( 'SentryInternalError' ) ;
72
+ const DO_NOT_SEND_EVENT_SYMBOL = Symbol . for ( 'SentryDoNotSendEventError' ) ;
73
+
74
+ interface InternalError {
75
+ message : string ;
76
+ [ INTERNAL_ERROR_SYMBOL ] : true ;
77
+ }
78
+
79
+ interface DoNotSendEventError {
80
+ message : string ;
81
+ [ DO_NOT_SEND_EVENT_SYMBOL ] : true ;
82
+ }
83
+
84
+ function _makeInternalError ( message : string ) : InternalError {
85
+ return {
86
+ message,
87
+ [ INTERNAL_ERROR_SYMBOL ] : true ,
88
+ } ;
89
+ }
90
+
91
+ function _makeDoNotSendEventError ( message : string ) : DoNotSendEventError {
92
+ return {
93
+ message,
94
+ [ DO_NOT_SEND_EVENT_SYMBOL ] : true ,
95
+ } ;
96
+ }
97
+
98
+ function _isInternalError ( error : unknown ) : error is InternalError {
99
+ return ! ! error && typeof error === 'object' && INTERNAL_ERROR_SYMBOL in error ;
100
+ }
101
+
102
+ function _isDoNotSendEventError ( error : unknown ) : error is DoNotSendEventError {
103
+ return ! ! error && typeof error === 'object' && DO_NOT_SEND_EVENT_SYMBOL in error ;
104
+ }
105
+
72
106
/**
73
107
* Base implementation for all JavaScript SDK clients.
74
108
*
@@ -975,10 +1009,10 @@ export abstract class Client<O extends ClientOptions = ClientOptions> {
975
1009
} ,
976
1010
reason => {
977
1011
if ( DEBUG_BUILD ) {
978
- // If something's gone wrong, log the error as a warning. If it's just us having used a `SentryError` for
979
- // control flow, log just the message (no stack) as a log-level log.
980
- if ( reason instanceof SentryError && reason . logLevel === 'log' ) {
1012
+ if ( _isDoNotSendEventError ( reason ) ) {
981
1013
logger . log ( reason . message ) ;
1014
+ } else if ( _isInternalError ( reason ) ) {
1015
+ logger . warn ( reason . message ) ;
982
1016
} else {
983
1017
logger . warn ( reason ) ;
984
1018
}
@@ -1022,9 +1056,8 @@ export abstract class Client<O extends ClientOptions = ClientOptions> {
1022
1056
if ( isError && typeof parsedSampleRate === 'number' && Math . random ( ) > parsedSampleRate ) {
1023
1057
this . recordDroppedEvent ( 'sample_rate' , 'error' ) ;
1024
1058
return rejectedSyncPromise (
1025
- new SentryError (
1059
+ _makeDoNotSendEventError (
1026
1060
`Discarding event because it's not included in the random sample (sampling rate = ${ sampleRate } )` ,
1027
- 'log' ,
1028
1061
) ,
1029
1062
) ;
1030
1063
}
@@ -1035,7 +1068,7 @@ export abstract class Client<O extends ClientOptions = ClientOptions> {
1035
1068
. then ( prepared => {
1036
1069
if ( prepared === null ) {
1037
1070
this . recordDroppedEvent ( 'event_processor' , dataCategory ) ;
1038
- throw new SentryError ( 'An event processor returned `null`, will not send event.' , 'log ') ;
1071
+ throw _makeDoNotSendEventError ( 'An event processor returned `null`, will not send event.' ) ;
1039
1072
}
1040
1073
1041
1074
const isInternalException = hint . data && ( hint . data as { __sentry__ : boolean } ) . __sentry__ === true ;
@@ -1055,7 +1088,7 @@ export abstract class Client<O extends ClientOptions = ClientOptions> {
1055
1088
const spanCount = 1 + spans . length ;
1056
1089
this . recordDroppedEvent ( 'before_send' , 'span' , spanCount ) ;
1057
1090
}
1058
- throw new SentryError ( `${ beforeSendLabel } returned \`null\`, will not send event.` , 'log' ) ;
1091
+ throw _makeDoNotSendEventError ( `${ beforeSendLabel } returned \`null\`, will not send event.` ) ;
1059
1092
}
1060
1093
1061
1094
const session = currentScope . getSession ( ) || isolationScope . getSession ( ) ;
@@ -1089,7 +1122,7 @@ export abstract class Client<O extends ClientOptions = ClientOptions> {
1089
1122
return processedEvent ;
1090
1123
} )
1091
1124
. then ( null , reason => {
1092
- if ( reason instanceof SentryError ) {
1125
+ if ( _isDoNotSendEventError ( reason ) || _isInternalError ( reason ) ) {
1093
1126
throw reason ;
1094
1127
}
1095
1128
@@ -1099,7 +1132,7 @@ export abstract class Client<O extends ClientOptions = ClientOptions> {
1099
1132
} ,
1100
1133
originalException : reason ,
1101
1134
} ) ;
1102
- throw new SentryError (
1135
+ throw _makeInternalError (
1103
1136
`Event processing pipeline threw an error, original event will not be sent. Details have been sent as a new event.\nReason: ${ reason } ` ,
1104
1137
) ;
1105
1138
} ) ;
@@ -1205,16 +1238,16 @@ function _validateBeforeSendResult(
1205
1238
return beforeSendResult . then (
1206
1239
event => {
1207
1240
if ( ! isPlainObject ( event ) && event !== null ) {
1208
- throw new SentryError ( invalidValueError ) ;
1241
+ throw _makeInternalError ( invalidValueError ) ;
1209
1242
}
1210
1243
return event ;
1211
1244
} ,
1212
1245
e => {
1213
- throw new SentryError ( `${ beforeSendLabel } rejected with ${ e } ` ) ;
1246
+ throw _makeInternalError ( `${ beforeSendLabel } rejected with ${ e } ` ) ;
1214
1247
} ,
1215
1248
) ;
1216
1249
} else if ( ! isPlainObject ( beforeSendResult ) && beforeSendResult !== null ) {
1217
- throw new SentryError ( invalidValueError ) ;
1250
+ throw _makeInternalError ( invalidValueError ) ;
1218
1251
}
1219
1252
return beforeSendResult ;
1220
1253
}
0 commit comments