Procházet zdrojové kódy

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

baichengfei před 5 roky
rodič
revize
9c8adae332
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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