From 835b6efe847cd311bc8bd7955127076f2f64a468 Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Thu, 30 Apr 2020 12:03:57 -0400 Subject: [PATCH] don't panic for now if we lose backend --- backend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend.go b/backend.go index a4800bc..324c681 100644 --- a/backend.go +++ b/backend.go @@ -109,5 +109,5 @@ func runBackendServer() { log.Panicf("can't exec backend: %s", err) } err = proc.Wait() - log.Panicf("lost the backend: %s", err) + log.Printf("lost the backend: %s", err) }