Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion packages/integration-shims/src/BrowserTracing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class BrowserTracingShim implements Integration {

consoleSandbox(() => {
// eslint-disable-next-line no-console
console.error('You are using new BrowserTracing() even though this bundle does not include tracing.');
console.warn('You are using new BrowserTracing() even though this bundle does not include tracing.');
});
}

Expand Down
2 changes: 1 addition & 1 deletion packages/integration-shims/src/Feedback.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class FeedbackShim implements Integration {

consoleSandbox(() => {
// eslint-disable-next-line no-console
console.error('You are using new Feedback() even though this bundle does not include Feedback.');
console.warn('You are using new Feedback() even though this bundle does not include Feedback.');
});
}

Expand Down
2 changes: 1 addition & 1 deletion packages/integration-shims/src/Replay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ReplayShim implements Integration {

consoleSandbox(() => {
// eslint-disable-next-line no-console
console.error('You are using new Replay() even though this bundle does not include replay.');
console.warn('You are using new Replay() even though this bundle does not include replay.');
});
}

Expand Down