2
3
Quellcode durchsuchen

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

baichengfei vor 5 Jahren
Ursprung
Commit
9c8adae332
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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