Downgrade error level of pidfile.Write() to Critical

This commit is contained in:
Frank Denis 2019-12-09 13:08:03 +01:00
parent b5bb0fd504
commit 7991b91f21
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ func (app *App) AppMain() {
app.quit = make(chan struct{})
app.wg.Add(1)
if err := pidfile.Write(); err != nil {
dlog.Fatal(err)
dlog.Critical(err)
}
app.proxy.StartProxy()
<-app.quit