mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 11:42:43 +08:00
Fix: print log when start dns server failed (#87)
This commit is contained in:
parent
e997a02260
commit
c56a90cb0c
|
@ -55,7 +55,9 @@ func updateDNS(c *config.DNS) {
|
|||
EnhancedMode: c.EnhancedMode,
|
||||
})
|
||||
T.Instance().SetResolver(r)
|
||||
dns.ReCreateServer(c.Listen, r)
|
||||
if err := dns.ReCreateServer(c.Listen, r); err != nil {
|
||||
log.Errorln("Start DNS server error: %s", err.Error())
|
||||
}
|
||||
}
|
||||
|
||||
func updateProxies(proxies map[string]C.Proxy) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user