Browse Source

Log cleanup

pull/68/head
Gabe Kangas 5 years ago
parent
commit
a11999c3c0
  1. 7
      core/rtmp/rtmp.go

7
core/rtmp/rtmp.go

@ -64,9 +64,8 @@ func Start() { @@ -64,9 +64,8 @@ func Start() {
func HandleConn(c *rtmp.Conn, nc net.Conn) {
c.LogTagEvent = func(isRead bool, t flvio.Tag) {
if t.Type == flvio.TAG_AMF0 {
log.Infof("%+v\n", t.DebugFields())
log.Traceln("%+v\n", t.DebugFields())
}
}
if _isConnected {
@ -109,10 +108,6 @@ func HandleConn(c *rtmp.Conn, nc net.Conn) { @@ -109,10 +108,6 @@ func HandleConn(c *rtmp.Conn, nc net.Conn) {
return
}
if pkt.Metadata != nil {
fmt.Println(string(pkt.Metadata))
}
if err := w.WritePacket(pkt); err != nil {
panic(err)
}

Loading…
Cancel
Save