chore: system err log

This commit is contained in:
MetaCubeX 2022-04-27 22:54:12 +08:00
parent 96a32f5038
commit b498d2dda2

View file

@ -1,6 +1,7 @@
package nat
import (
log "github.com/sirupsen/logrus"
"io"
"net"
"net/netip"
@ -43,6 +44,7 @@ func Start(device io.ReadWriter, gateway, portal, broadcast netip.Addr) (*TCP, *
for {
n, err := device.Read(buf)
if err != nil {
log.Warnln("system error:%s", err.Error())
continue
}