all: please remove uses of log.Fatal* as they don't allow any recoveries nor cleanups and immediately invoke os.Exit · Issue #294 · PeggyJV/sommelier · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we can see the invocation of log.Fatal which will immediately terminate the program having invoked os.Exit, not allowing for any deferred cleanups. Even more, the code all around it uses panic(err)