소스 검색

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

baichengfei 5 년 전
부모
커밋
9c8adae332
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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