Skip to content

Commit

Permalink
test: fix replay logger, infoTick with wrong level
Browse files Browse the repository at this point in the history
  • Loading branch information
billyvg committed Nov 12, 2024
1 parent f5007a4 commit 53cba4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/replay-internal/src/util/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function makeReplayLogger(): ReplayLogger {
if (_trace) {
// Wait a tick here to avoid race conditions for some initial logs
// which may be added before replay is initialized
setTimeout(() => _addBreadcrumb(args[0]), 0);
setTimeout(() => _addBreadcrumb(args[0], 'info'), 0);
}
};
} else {
Expand Down

0 comments on commit 53cba4d

Please sign in to comment.