index 8c9211b..d2a637e 100644 --- a/examples/chat/chat.go +++ b/examples/chat/chat.go @@ -107,11 +107,11 @@ outer: fmt.Printf("* %v %v\n", e.Username, e.Value, ) - } else if e.Username == "" { - fmt.Printf("%v\n", e.Value) +// } else if e.Username == "" { +// fmt.Printf("%v\n", e.Value) } else { - fmt.Printf("%v: %v\n", - e.Username, e.Value, + fmt.Printf("%v %v: %v\n", + e.Time, e.Username, e.Value, ) } 11