We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8edc1b2 commit 7314883Copy full SHA for 7314883
packages/replay/src/integration.ts
@@ -1,6 +1,6 @@
1
import { getCurrentHub } from '@sentry/core';
2
import type { BrowserClientReplayOptions, Integration } from '@sentry/types';
3
-import { dropUndefinedKeys, logger } from '@sentry/utils';
+import { dropUndefinedKeys } from '@sentry/utils';
4
5
import { DEFAULT_FLUSH_MAX_DELAY, DEFAULT_FLUSH_MIN_DELAY, MASK_ALL_TEXT_SELECTOR } from './constants';
6
import { ReplayContainer } from './replay';
@@ -219,7 +219,7 @@ function loadReplayOptionsFromClient(initialOptions: InitialReplayPluginOptions)
219
220
if (!opt) {
221
// eslint-disable-next-line no-console
222
- console.warn('Replay is disabled because SDK options are not available');
+ console.warn('SDK client is not available.');
223
return finalOptions;
224
}
225
0 commit comments