Skip to content

Commit 4b89486

Browse files
committed
fix: Rename ourlog -> log
1 parent 1869d6f commit 4b89486

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

packages/core/src/exports.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { getClient, getCurrentScope, getIsolationScope, withIsolationScope } from './currentScopes';
22
import { DEBUG_BUILD } from './debug-build';
3-
import { captureLog } from './ourlogs';
3+
import { captureLog } from './log';
44
import type { CaptureContext } from './scope';
55
import { closeSession, makeSession, updateSession } from './session';
66
import type {

packages/core/src/ourlogs.ts renamed to packages/core/src/log.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { getClient, getGlobalScope } from './currentScopes';
22
import type { LogEnvelope, LogItem } from './types-hoist/envelope';
3-
import type { Log, LogAttribute, LogSeverityLevel } from './types-hoist/ourlogs';
3+
import type { Log, LogAttribute, LogSeverityLevel } from './types-hoist/log';
44
import { createEnvelope, dsnToString } from './utils-hoist';
55

66
/**

packages/core/src/types-hoist/envelope.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { LegacyCSPReport } from './csp';
55
import type { DsnComponents } from './dsn';
66
import type { Event } from './event';
77
import type { FeedbackEvent, UserFeedback } from './feedback';
8-
import type { Log } from './ourlogs';
8+
import type { Log } from './log';
99
import type { Profile, ProfileChunk } from './profiling';
1010
import type { ReplayEvent, ReplayRecordingData } from './replay';
1111
import type { SdkInfo } from './sdkinfo';

packages/core/src/types-hoist/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export type {
118118
LogAttribute,
119119
LogSeverityLevel,
120120
LogAttributeValueType,
121-
} from './ourlogs';
121+
} from './log';
122122
export type { SpanStatus } from './spanStatus';
123123
export type { TimedEvent } from './timedEvent';
124124
export type { StackFrame } from './stackframe';

0 commit comments

Comments
 (0)