From 99881e2c702c6e1b4704bfb23aebe614d7d34285 Mon Sep 17 00:00:00 2001 From: "arraykeys@gmail.com" Date: Tue, 9 Oct 2018 14:23:22 +0800 Subject: [PATCH] fix #156 --- services/udp/udp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/udp/udp.go b/services/udp/udp.go index dbd14af..f585b9a 100644 --- a/services/udp/udp.go +++ b/services/udp/udp.go @@ -366,7 +366,7 @@ func (s *UDP) UDPRevecive(key string) { }() v, ok := s.udpConns.Get(key) if !ok { - s.log.Printf("[warn] udp conn not exists for %s, connid : %s", key) + s.log.Printf("[warn] udp conn not exists for %s", key) return } uc = v.(*UDPConnItem)