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
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ describe('outgoing http requests with tracing & spans disabled', () => {

await createRunner()
.withEnv({ SERVER_URL })
.ensureNoErrorOutput()
.expect({
event: {
exception: {
Expand Down Expand Up @@ -131,7 +130,6 @@ describe('outgoing http requests with tracing & spans disabled', () => {

await createRunner()
.withEnv({ SERVER_URL })
.ensureNoErrorOutput()
.expect({
event: {
exception: {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/utils-hoist/baggage.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { DynamicSamplingContext } from '../types-hoist/envelope';
import { DEBUG_BUILD } from './debug-build';
import { DEBUG_BUILD } from './../debug-build';
import { isString } from './is';
import { logger } from './logger';

Expand Down
8 changes: 0 additions & 8 deletions packages/core/src/utils-hoist/debug-build.ts

This file was deleted.

2 changes: 1 addition & 1 deletion packages/core/src/utils-hoist/dsn.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { DsnComponents, DsnLike, DsnProtocol } from '../types-hoist/dsn';
import { DEBUG_BUILD } from './debug-build';
import { DEBUG_BUILD } from './../debug-build';
import { consoleSandbox, logger } from './logger';

/** Regular expression used to parse a Dsn. */
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/utils-hoist/instrument/handlers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DEBUG_BUILD } from '../debug-build';
import { DEBUG_BUILD } from '../../debug-build';
import { logger } from '../logger';
import { getFunctionName } from '../stacktrace';

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/utils-hoist/logger.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { getGlobalSingleton } from '../carrier';
import type { ConsoleLevel } from '../types-hoist/instrument';
import { DEBUG_BUILD } from './debug-build';
import { DEBUG_BUILD } from './../debug-build';
import { GLOBAL_OBJ } from './worldwide';

/** Prefix for logging strings */
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/utils-hoist/object.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import type { WrappedFunction } from '../types-hoist/wrappedfunction';
import { DEBUG_BUILD } from './../debug-build';
import { htmlTreeAsString } from './browser';
import { DEBUG_BUILD } from './debug-build';
import { isElement, isError, isEvent, isInstanceOf, isPrimitive } from './is';
import { logger } from './logger';
import { truncate } from './string';
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/utils-hoist/supports.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DEBUG_BUILD } from './debug-build';
import { DEBUG_BUILD } from './../debug-build';
import { logger } from './logger';
import { GLOBAL_OBJ } from './worldwide';

Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/utils-hoist/dsn.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { beforeEach, describe, expect, test, vi } from 'vitest';
import { DEBUG_BUILD } from '../../src/utils-hoist/debug-build';
import { DEBUG_BUILD } from '../../src/debug-build';
import { dsnToString, makeDsn } from '../../src/utils-hoist/dsn';
import { logger } from '../../src/utils-hoist/logger';

Expand Down
Loading