Selaa lähdekoodia

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

baichengfei 5 vuotta sitten
vanhempi
commit
9c8adae332
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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