Skip to content

Commit 1b98ab1

Browse files
committed
just use console
1 parent be4d02d commit 1b98ab1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • packages/server-utils/src/orchestrion/runtime

‎packages/server-utils/src/orchestrion/runtime/register.ts‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ function isTransformerTreeShaken(): boolean {
6969
*/
7070
function warnRuntimeUnavailable(message: string): void {
7171
consoleSandbox(() => {
72-
GLOBAL_OBJ.console?.warn(`[Sentry] ${message} See ${BUNDLING_DOCS_URL}`);
72+
// oxlint-disable-next-line no-console
73+
console.warn(`[Sentry] ${message} See ${BUNDLING_DOCS_URL}`);
7374
});
7475
}
7576

0 commit comments

Comments
 (0)