We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f166665 commit f8cda8bCopy full SHA for f8cda8b
1 file changed
src/profile-query-cli/formatters.ts
@@ -221,7 +221,8 @@ Stack trace for marker ${result.markerHandle}: ${result.markerName}\n`;
221
}
222
223
if (result.stack.capturedAt !== undefined) {
224
- output += `\nCaptured at: ${result.stack.capturedAt.toFixed(3)}ms\n`;
+ const rootStart = result.context.rootRange.start;
225
+ output += `\nCaptured at: ${formatDuration(result.stack.capturedAt - rootStart)}\n`;
226
227
228
for (let i = 0; i < result.stack.frames.length; i++) {
0 commit comments