Skip to content

Commit 20843e9

Browse files
committed
style(hooks): 在事件日志格式化中添加 end 值前的空格
1 parent 019df2a commit 20843e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/cli/src/hooks/useEventLog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function formatEventData(event: AgentEvent): string {
6262
const formatters: Record<string, (value: unknown) => string> = {
6363
action: v => String(v),
6464
start: v => `: [${v}]`,
65-
end: v => `-> [${v}]`,
65+
end: v => ` -> [${v}]`,
6666
app: v => `: ${v}`,
6767
element: v => `: [${v}]`,
6868
text: v => `: ${v}`,

0 commit comments

Comments
 (0)