Browse Source

后端:去掉base文件遍历路由时的打印

baichengfei 5 years ago
parent
commit
9c8adae332
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/dashoo.cn/backend/api/controllers/base.go

+ 1 - 1
src/dashoo.cn/backend/api/controllers/base.go

@@ -352,7 +352,7 @@ func (this *BaseController) Prepare() {
 		"/api/iam/iamlogin",
 	}
 	for _, v := range urls {
-		fmt.Println("**this.Ctx.Input.URL()**", this.Ctx.Input.URL())
+		//fmt.Println("**this.Ctx.Input.URL()**", this.Ctx.Input.URL())
 		if this.Ctx.Input.URL() == v {
 			find = true
 			break