add log
This commit is contained in:
parent
97e82a0ff6
commit
48ea9b12f6
2 changed files with 7 additions and 1 deletions
6
serve.go
6
serve.go
|
@ -44,6 +44,10 @@ gogs serv provide access auth for repositories`,
|
|||
Flags: []cli.Flag{},
|
||||
}
|
||||
|
||||
func init() {
|
||||
log.NewLogger(10000, "file", fmt.Sprintf(`{"filename":"%s"}`, "log/serv.log"))
|
||||
}
|
||||
|
||||
func parseCmd(cmd string) (string, string) {
|
||||
ss := strings.SplitN(cmd, " ", 2)
|
||||
if len(ss) != 2 {
|
||||
|
@ -227,7 +231,7 @@ func runServ(k *cli.Context) {
|
|||
return
|
||||
}
|
||||
if ref, ok = refs[refname]; !ok {
|
||||
println("unknow reference name -", refname, "-")
|
||||
log.Trace("unknow reference name -", refname, "-", b.String())
|
||||
return
|
||||
}
|
||||
l, err = ref.AllCommits()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue