aboutsummaryrefslogtreecommitdiffstats
path: root/msb2pilot2/main.go
diff options
context:
space:
mode:
authorLvbo163 <lv.bo163@zte.com.cn>2018-07-14 14:58:55 +0800
committerLvbo163 <lv.bo163@zte.com.cn>2018-07-14 14:59:32 +0800
commitd4abfa7ac6ec1a3495dfd655379acf8e9262885c (patch)
tree9b699b5d04bebfd11f0dc5e57e2731d4b2c6ca86 /msb2pilot2/main.go
parent651367525a450768565336258c283c395adcc5eb (diff)
Add log util for msb to istio agent
Issue-ID: MSB-213 Change-Id: I3ed127a72415fe69402775603610a5788c7087ed Signed-off-by: Lvbo163 <lv.bo163@zte.com.cn>
Diffstat (limited to 'msb2pilot2/main.go')
-rw-r--r--msb2pilot2/main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/msb2pilot2/main.go b/msb2pilot2/main.go
index 7624e46..8d7bfdd 100644
--- a/msb2pilot2/main.go
+++ b/msb2pilot2/main.go
@@ -1,11 +1,13 @@
package main
import (
+ "msb2pilot/log"
_ "msb2pilot2/routers"
+
"github.com/astaxie/beego"
)
func main() {
+ log.Log.Informational("**************** init msb2pilot ************************")
beego.Run()
}
-