Browse Source

Fix log bug

tags/v1.2.0-rc1
Unknown 11 years ago
parent
commit
91e6db1bae
2 changed files with 3 additions and 2 deletions
  1. +1
    -1
      modules/log/log.go
  2. +2
    -1
      routers/install.go

+ 1
- 1
modules/log/log.go View File

@@ -15,7 +15,7 @@ var (
) )


func init() { func init() {
NewLogger(10000, "console", `{"level": 0}`)
NewLogger(0, "console", `{"level": 0}`)
} }


func NewLogger(bufLen int64, mode, config string) { func NewLogger(bufLen int64, mode, config string) {


+ 2
- 1
routers/install.go View File

@@ -6,6 +6,7 @@ package routers


import ( import (
"errors" "errors"
"fmt"
"os" "os"
"strings" "strings"


@@ -42,7 +43,7 @@ func GlobalInit() {


if base.InstallLock { if base.InstallLock {
if err := models.NewEngine(); err != nil { if err := models.NewEngine(); err != nil {
log.Error("%v", err)
fmt.Println("%v", err)
os.Exit(2) os.Exit(2)
} }




Loading…
Cancel
Save