Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
silesky committed Jun 12, 2024
1 parent e3c22d6 commit 7fa0d41
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/signals/browser-signals/src/core/client/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ export class SignalsIngestClient {
} else {
const { data, type } = signal
logger.debug('Sending signal', {
...(data.eventType ? { eventType: data.eventType } : {}),
...(type !== 'instrumentation' && data.eventType
? { eventType: data.eventType }
: {}),
type,
data,
})
Expand Down

0 comments on commit 7fa0d41

Please sign in to comment.