summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2023-06-13 00:33:14 +0300
committerPaul Buetow <paul@buetow.org>2023-06-13 00:33:14 +0300
commit3096e71218f58588b8be2d11280b2b99383e1461 (patch)
tree92b950b6e220025e244fb50154c7dfa23f6501b1 /cmd
parentf9aaa6b3838c336428ed1f2df30f3731e590c043 (diff)
refacto quorum
Diffstat (limited to 'cmd')
-rw-r--r--cmd/gorum/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/gorum/main.go b/cmd/gorum/main.go
index 0573f3a..da6574c 100644
--- a/cmd/gorum/main.go
+++ b/cmd/gorum/main.go
@@ -29,7 +29,7 @@ func main() {
defer cancel()
if err := internal.Run(ctx, *configFile); err != nil {
- panic(err)
+ log.Fatal(err)
}
<-ctx.Done()