From a7a9ae0984424156adaae53579ee378b990bb390 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Tue, 14 Jul 2020 16:48:41 -0700 Subject: [PATCH] Fix incorrect logging method --- core/rtmp/rtmp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rtmp/rtmp.go b/core/rtmp/rtmp.go index 8b8f84016..64840a4f8 100644 --- a/core/rtmp/rtmp.go +++ b/core/rtmp/rtmp.go @@ -64,7 +64,7 @@ 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.Traceln("%+v\n", t.DebugFields()) + log.Tracef("%+v\n", t.DebugFields()) } }