From f1b6594c50db86e1d3e512e0546f2fb5fc3d880c Mon Sep 17 00:00:00 2001 From: lifei6671 Date: Wed, 22 May 2019 15:11:41 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E5=A2=9E=E5=8A=A0=E5=90=AF=E5=8A=A8?= =?UTF-8?q?=E5=BC=82=E5=B8=B8=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 436ad649..9160e648 100644 --- a/main.go +++ b/main.go @@ -2,6 +2,7 @@ package main import ( "fmt" + "log" "os" _ "github.com/astaxie/beego/session/memcache" @@ -36,5 +37,7 @@ func main() { os.Exit(1) } - s.Run() + if err := s.Run(); err != nil { + log.Fatal("启动程序失败 ->", err) + } }