mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-23 05:52:10 +00:00
Fix wrong serve command log location and commit repo action
This commit is contained in:
parent
197c4d4a5b
commit
9aba29dd8f
6
serve.go
6
serve.go
|
@ -11,6 +11,7 @@ import (
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
|
"path"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
@ -47,8 +48,9 @@ gogs serv provide access auth for repositories`,
|
||||||
|
|
||||||
func newLogger(execDir string) {
|
func newLogger(execDir string) {
|
||||||
level := "0"
|
level := "0"
|
||||||
os.MkdirAll("log", os.ModePerm)
|
logPath := execDir + "/log/serv.log"
|
||||||
log.NewLogger(10000, "file", fmt.Sprintf(`{"level":%s,"filename":"%s"}`, level, execDir+"/log/serv.log"))
|
os.MkdirAll(path.Dir(logPath), os.ModePerm)
|
||||||
|
log.NewLogger(10000, "file", fmt.Sprintf(`{"level":%s,"filename":"%s"}`, level, logPath))
|
||||||
log.Trace("start logging...")
|
log.Trace("start logging...")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue