Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/browser/src/profiling/UIProfiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,8 @@ export class UIProfiler implements ContinuousProfiler<Client> {
private _setupTraceLifecycleListeners(client: Client): void {
client.on('spanStart', span => {
if (!this._sessionSampled) {
DEBUG_BUILD && debug.log('[Profiling] Session not sampled because of negative sampling decision.');
DEBUG_BUILD &&
debug.log('[Profiling] Span not profiled because of negative sampling decision for user session.');
return;
}
if (span !== getRootSpan(span)) {
Expand Down
Loading