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
DEBUG_BUILD&&logger.log(`[Tracing] Not sampling span because HTTP method is '${method}' for ${spanName}`);
140
+
DEBUG_BUILD&&debug.log(`[Tracing] Not sampling span because HTTP method is '${method}' for ${spanName}`);
141
141
142
142
returnwrapSamplingDecision({
143
143
decision: SamplingDecision.NOT_RECORD,
@@ -153,7 +153,7 @@ export class SentrySampler implements Sampler {
153
153
// We check for `parentSampled === undefined` because we only want to record client reports for spans that are trace roots (ie. when there was incoming trace)
154
154
parentSampled===undefined
155
155
){
156
-
DEBUG_BUILD&&logger.log('[Tracing] Discarding root span because its trace was not chosen to be sampled.');
156
+
DEBUG_BUILD&&debug.log('[Tracing] Discarding root span because its trace was not chosen to be sampled.');
0 commit comments