feat(playback): Add UUID to summary view
This commit is contained in:
parent
bffc301568
commit
ba1e58f797
|
@ -26,10 +26,11 @@ func doPlayback() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Print the formatted one-line summary.
|
// Print the formatted one-line summary.
|
||||||
fmt.Printf("Topic: %-25s | Entries: %-4d | Started: %s\n",
|
fmt.Printf("Topic: %-25s | Entries: %-4d | Started: %s | UUID: %s\n",
|
||||||
chat.GetChatName(),
|
chat.GetChatName(),
|
||||||
entryCount,
|
entryCount,
|
||||||
formattedTime,
|
formattedTime,
|
||||||
|
chat.GetUuid(),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
fmt.Println("-------------------------------------------------")
|
fmt.Println("-------------------------------------------------")
|
||||||
|
|
Loading…
Reference in New Issue