Browse Source

Merge branch 'master' of localhost:xiaoxiao/gogs6

Conflicts:
	.gitignore
Lunny Xiao 11 years ago
parent
commit
2ec111e1a2
2 changed files with 3 additions and 1 deletions
  1. 1 0
      .gitignore
  2. 2 1
      serve.go

+ 1 - 0
.gitignore

@@ -1,3 +1,4 @@
+
 gogs
 *.exe
 *.exe~

+ 2 - 1
serve.go

@@ -46,8 +46,9 @@ gogs serv provide access auth for repositories`,
 }
 
 func init() {
+	level := "0"
 	os.MkdirAll("log", os.ModePerm)
-	log.NewLogger(10000, "file", fmt.Sprintf(`{"filename":"%s"}`, "log/serv.log"))
+	log.NewLogger(10000, "file", fmt.Sprintf(`{"level":%s,"filename":"%s"}`, level, "log/serv.log"))
 	log.Info("start logging...")
 }