Bel LaPointe 2024-12-14 19:30:16 -07:00
parent b6a104526c
commit d5a290c60d
1 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,8 @@ func main() {
for {
mt, b, err := c.Read(ctx)
if err != nil {
panic(err)
log.Println(err)
return
}
log.Printf("[%s] %s", mt, b)
}