Skip to content

Commit da7c860

Browse files
committed
fix performance monitoring not working in non debug mode
1 parent 92a2ebb commit da7c860

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/EventSpanTrait.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function addEventSpan(string $name, string $sentryOp, ?float $startTime =
2323
}
2424

2525
if ($startTime == 0) {
26-
$startTime = 1;
26+
$startTime = 0.00000000000001;
2727
}
2828

2929
$spanContext = new SpanContext();

0 commit comments

Comments
 (0)