Write close error to log

This commit is contained in:
世界
2024-08-10 16:47:44 +08:00
parent 8a01e3a6d5
commit 3505fea8bd

View File

@@ -188,9 +188,12 @@ func run() error {
cancel()
closeCtx, closed := context.WithCancel(context.Background())
go closeMonitor(closeCtx)
instance.Close()
err = instance.Close()
closed()
if osSignal != syscall.SIGHUP {
if err != nil {
log.Error(E.Cause(err, "sing-box did not closed properly"))
}
return nil
}
break