Skip to content

Commit 6be5f22

Browse files
committed
add missing exports, cleanup
1 parent b191686 commit 6be5f22

File tree

6 files changed

+5
-1
lines changed

6 files changed

+5
-1
lines changed

packages/astro/src/index.server.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export {
5555
getSentryRelease,
5656
getSpanDescendants,
5757
getSpanStatusFromHttpCode,
58+
getTracingMetaTags,
5859
graphqlIntegration,
5960
hapiIntegration,
6061
httpIntegration,

packages/astro/src/server/middleware.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ function addMetaTagToHead(htmlChunk: string, scope: Scope, client: Client, span?
189189
if (typeof htmlChunk !== 'string') {
190190
return htmlChunk;
191191
}
192-
console.log({ scope });
193192
const { 'sentry-trace': sentryTrace, baggage } = getTracingMetaTags(span, scope, client);
194193

195194
const sentryTraceMeta = `<meta name="sentry-trace" content="${sentryTrace}"/>`;

packages/aws-serverless/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export {
2020
getCurrentScope,
2121
getGlobalScope,
2222
getIsolationScope,
23+
getTracingMetaTags,
2324
setCurrentClient,
2425
Scope,
2526
SDK_VERSION,

packages/bun/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export {
4040
getCurrentScope,
4141
getGlobalScope,
4242
getIsolationScope,
43+
getTracingMetaTags,
4344
setCurrentClient,
4445
Scope,
4546
SDK_VERSION,

packages/google-cloud-serverless/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export {
2020
getCurrentScope,
2121
getGlobalScope,
2222
getIsolationScope,
23+
getTracingMetaTags,
2324
setCurrentClient,
2425
Scope,
2526
SDK_VERSION,

packages/sveltekit/src/server/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ export {
5151
getSentryRelease,
5252
getSpanDescendants,
5353
getSpanStatusFromHttpCode,
54+
getTracingMetaTags,
5455
graphqlIntegration,
5556
hapiIntegration,
5657
httpIntegration,

0 commit comments

Comments
 (0)