1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 02:08:36 +00:00

Prepare for 0.2.0 release

This commit is contained in:
Unknown
2014-03-31 07:57:51 -04:00
parent dd9fb807a4
commit 76c64b43cb
3 changed files with 12 additions and 6 deletions

View File

@@ -47,7 +47,7 @@ func newLogger(execDir string) {
level := "0"
logPath := execDir + "/log/serv.log"
os.MkdirAll(path.Dir(logPath), os.ModePerm)
log.NewLogger(10000, "file", fmt.Sprintf(`{"level":%s,"filename":"%s"}`, level, logPath))
log.NewLogger(0, "file", fmt.Sprintf(`{"level":%s,"filename":"%s"}`, level, logPath))
log.Trace("start logging...")
}