Browse Source

Fix bug related to log

tags/v1.2.0-rc1
Unknown 11 years ago
parent
commit
db1fe3483e
2 changed files with 2 additions and 3 deletions
  1. +1
    -2
      modules/base/conf.go
  2. +1
    -1
      update.go

+ 1
- 2
modules/base/conf.go View File

@@ -150,6 +150,7 @@ func newLogService() {
Cfg.MustValue(modeSec, "CONN"))
}

log.Info("%s %s", AppName, AppVer)
log.NewLogger(Cfg.MustInt64("log", "BUFFER_LEN", 10000), LogMode, LogConfig)
log.Info("Log Mode: %s(%s)", strings.Title(LogMode), levelName)
}
@@ -292,8 +293,6 @@ func NewConfigContext() {
if err = os.MkdirAll(RepoRootPath, os.ModePerm); err != nil {
qlog.Fatalf("Fail to create RepoRootPath(%s): %v\n", RepoRootPath, err)
}

log.Info("%s %s", AppName, AppVer)
}

func NewServices() {


+ 1
- 1
update.go View File

@@ -45,7 +45,7 @@ func newUpdateLogger(execDir string) {
// for command: ./gogs update
func runUpdate(c *cli.Context) {
execDir, _ := base.ExecDir()
newLogger(execDir)
newUpdateLogger(execDir)

base.NewConfigContext()
models.LoadModelsConfig()


Loading…
Cancel
Save