소스 검색

fix disable router log option

Unknwon 9 년 전
부모
커밋
bdd92dc7d1
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      cmd/web.go

+ 5 - 3
cmd/web.go

@@ -98,7 +98,9 @@ func checkVersion() {
 // newMacaron initializes Macaron instance.
 // newMacaron initializes Macaron instance.
 func newMacaron() *macaron.Macaron {
 func newMacaron() *macaron.Macaron {
 	m := macaron.New()
 	m := macaron.New()
-	m.Use(macaron.Logger())
+	if !setting.DisableRouterLog {
+		m.Use(macaron.Logger())
+	}
 	m.Use(macaron.Recovery())
 	m.Use(macaron.Recovery())
 	if setting.EnableGzip {
 	if setting.EnableGzip {
 		m.Use(macaron.Gziper())
 		m.Use(macaron.Gziper())
@@ -109,14 +111,14 @@ func newMacaron() *macaron.Macaron {
 	m.Use(macaron.Static(
 	m.Use(macaron.Static(
 		path.Join(setting.StaticRootPath, "public"),
 		path.Join(setting.StaticRootPath, "public"),
 		macaron.StaticOptions{
 		macaron.StaticOptions{
-			SkipLogging: !setting.DisableRouterLog,
+			SkipLogging: setting.DisableRouterLog,
 		},
 		},
 	))
 	))
 	m.Use(macaron.Static(
 	m.Use(macaron.Static(
 		setting.AvatarUploadPath,
 		setting.AvatarUploadPath,
 		macaron.StaticOptions{
 		macaron.StaticOptions{
 			Prefix:      "avatars",
 			Prefix:      "avatars",
-			SkipLogging: !setting.DisableRouterLog,
+			SkipLogging: setting.DisableRouterLog,
 		},
 		},
 	))
 	))
 	m.Use(macaron.Renderer(macaron.RenderOptions{
 	m.Use(macaron.Renderer(macaron.RenderOptions{