blah
This commit is contained in:
parent
0e6bc36984
commit
24f9157d50
|
@ -23,10 +23,16 @@ func showChat(uuid string) {
|
||||||
log.Info("unknown uuid", uuid)
|
log.Info("unknown uuid", uuid)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
listEntries(chat)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func listChats(chats *chatpb.Chats) {
|
func listChats(chats *chatpb.Chats) {
|
||||||
|
if argv.Playback.Long != nil {
|
||||||
|
for _, chat := range chats.GetChats() {
|
||||||
|
listEntries(chat)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
log.Infof("Found %d chat topic(s) in the log.", len(chats.GetChats()))
|
log.Infof("Found %d chat topic(s) in the log.", len(chats.GetChats()))
|
||||||
fmt.Println("-------------------------------------------------")
|
fmt.Println("-------------------------------------------------")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue