Skip to content

Commit 53cba4d

Browse files
committed
test: fix replay logger, infoTick with wrong level
1 parent f5007a4 commit 53cba4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/replay-internal/src/util/logger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function makeReplayLogger(): ReplayLogger {
9090
if (_trace) {
9191
// Wait a tick here to avoid race conditions for some initial logs
9292
// which may be added before replay is initialized
93-
setTimeout(() => _addBreadcrumb(args[0]), 0);
93+
setTimeout(() => _addBreadcrumb(args[0], 'info'), 0);
9494
}
9595
};
9696
} else {

0 commit comments

Comments
 (0)