Skip to content

Commit 74a60af

Browse files
stefanprobstsidharthachatterjee
authored andcommitted
fix(gatsby): Set fixed precision for "bootstrap finished" timer (#13528)
1 parent eaaee30 commit 74a60af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/gatsby/src/bootstrap/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ const finishBootstrap = async bootstrapSpan => {
528528
activity.end()
529529

530530
report.log(``)
531-
report.info(`bootstrap finished - ${process.uptime()} s`)
531+
report.info(`bootstrap finished - ${process.uptime().toFixed(3)} s`)
532532
report.log(``)
533533
emitter.emit(`BOOTSTRAP_FINISHED`)
534534
require(`../redux/actions`).boundActionCreators.setProgramStatus(

0 commit comments

Comments
 (0)