We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6efe57c commit b6f7fa8Copy full SHA for b6f7fa8
packages/svelte/src/performance.ts
@@ -52,7 +52,6 @@ function recordInitSpan(componentName: string): Span | undefined {
52
});
53
54
onMount(() => {
55
- console.log('END SPAN', componentName);
56
initSpan.end();
57
58
packages/svelte/src/preprocessors.ts
@@ -18,8 +18,6 @@ export const FIRST_PASS_COMPONENT_TRACKING_PREPROC_ID = 'FIRST_PASS_COMPONENT_TR
18
export function componentTrackingPreprocessor(options?: ComponentTrackingInitOptions): PreprocessorGroup {
19
const mergedOptions = { ...defaultComponentTrackingOptions, ...options };
20
21
- console.log('mergedOptions', mergedOptions);
22
-
23
const visitedFiles = new Set<string>();
24
const visitedFilesMarkup = new Set<string>();
25
0 commit comments