We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8130c16 commit e981281Copy full SHA for e981281
packages/replay/src/replay.ts
@@ -982,6 +982,9 @@ export class ReplayContainer implements ReplayContainerInterface {
982
983
const earliestEvent = eventBuffer.getEarliestTimestamp();
984
if (earliestEvent && earliestEvent < this._context.initialTimestamp) {
985
+ // eslint-disable-next-line no-console
986
+ const log = this.getOptions()._experiments.traceInternals ? console.info : logger.info;
987
+ __DEBUG_BUILD__ && log(`[Replay] Updating initial timestamp to ${earliestEvent}`);
988
this._context.initialTimestamp = earliestEvent;
989
}
990
0 commit comments