diff --git a/packages/integration-shims/src/BrowserTracing.ts b/packages/integration-shims/src/BrowserTracing.ts index 60acf4fc5df5..310dc589afe9 100644 --- a/packages/integration-shims/src/BrowserTracing.ts +++ b/packages/integration-shims/src/BrowserTracing.ts @@ -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.'); }); } diff --git a/packages/integration-shims/src/Feedback.ts b/packages/integration-shims/src/Feedback.ts index 78db6083d3c2..3a1efed9a89a 100644 --- a/packages/integration-shims/src/Feedback.ts +++ b/packages/integration-shims/src/Feedback.ts @@ -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.'); }); } diff --git a/packages/integration-shims/src/Replay.ts b/packages/integration-shims/src/Replay.ts index 921a25c4bdfa..16c905946219 100644 --- a/packages/integration-shims/src/Replay.ts +++ b/packages/integration-shims/src/Replay.ts @@ -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.'); }); }