4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-07-02 13:46:18 +00:00

make failed sends a debug log, instead of error

This commit is contained in:
Arceliar
2021-06-25 21:15:40 -05:00
parent 50bd16d524
commit 3b38ed082f
2 changed files with 5 additions and 3 deletions

View File

@ -18,7 +18,7 @@ func (tun *TunAdapter) read() {
end := begin + n
bs := buf[begin:end]
if _, err := tun.core.Write(bs); err != nil {
tun.log.Errorln("Unable to send packet:", err)
tun.log.Debugln("Unable to send packet:", err)
}
}
}