Skip to content

Commit 342864f

Browse files
committed
ref(vue): Use debug in vue sdk
1 parent ccbf627 commit 342864f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/vue/src/tracing.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { getActiveSpan, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, startInactiveSpan } from '@sentry/browser';
22
import type { Span } from '@sentry/core';
3-
import { logger, timestampInSeconds } from '@sentry/core';
3+
import { debug, timestampInSeconds } from '@sentry/core';
44
import { DEFAULT_HOOKS } from './constants';
55
import { DEBUG_BUILD } from './debug-build';
66
import type { Hook, Operation, TracingOptions, ViewModel, Vue } from './types';
@@ -73,7 +73,7 @@ export const createTracingMixins = (options: Partial<TracingOptions> = {}): Mixi
7373
// eg. mount => ['beforeMount', 'mounted']
7474
const internalHooks = HOOKS[operation];
7575
if (!internalHooks) {
76-
DEBUG_BUILD && logger.warn(`Unknown hook: ${operation}`);
76+
DEBUG_BUILD && debug.warn(`Unknown hook: ${operation}`);
7777
continue;
7878
}
7979

0 commit comments

Comments
 (0)