mirror of
https://github.com/octoleo/syncthing.git
synced 2024-12-23 11:28:59 +00:00
Print error on monitor restart failure
This commit is contained in:
parent
517b7a14b4
commit
aba01cdace
@ -99,7 +99,10 @@ func monitorMain() {
|
|||||||
// binary as part of the upgrade process.
|
// binary as part of the upgrade process.
|
||||||
l.Infoln("Restarting monitor...")
|
l.Infoln("Restarting monitor...")
|
||||||
os.Setenv("STNORESTART", "")
|
os.Setenv("STNORESTART", "")
|
||||||
exec.Command(args[0], args[1:]...).Start()
|
err := exec.Command(args[0], args[1:]...).Start()
|
||||||
|
if err != nil {
|
||||||
|
l.Warnln("restart:", err)
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user