Skip to content

Commit 6abb0cc

Browse files
jesseturner21claude
andcommitted
fix: show full trace ID and session ID in traces list output
Truncating IDs made them unusable as input to `traces get`. Display the full values so users can copy-paste trace IDs directly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7c68c60 commit 6abb0cc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/cli/commands/traces/command.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ export const registerTraces = (program: Command) => {
6464
{result.traces.map((trace, i) => (
6565
<Box key={i}>
6666
<Box width={34}>
67-
<Text color="cyan">{trace.traceId.slice(0, 32)}</Text>
67+
<Text color="cyan">{trace.traceId}</Text>
6868
</Box>
6969
<Box width={22}>
7070
<Text>{formatTimestamp(trace.timestamp)}</Text>
7171
</Box>
7272
<Box width={38}>
73-
<Text color="magenta">{trace.sessionId?.slice(0, 36) ?? '-'}</Text>
73+
<Text color="magenta">{trace.sessionId ?? '-'}</Text>
7474
</Box>
7575
</Box>
7676
))}

0 commit comments

Comments
 (0)