Browse Source

Fix #5866: Silence console logger in gitea serv (#5887)

By default, if `setting.NewContext()` prints out any warning logs, these are printed to the stdout breaking `git receive-pack` etc. meaning that even if there is a warning because of a minor problem in your app.ini but gitea starts despite this - you **CANNOT** push or pull over SSH.

This PR disables the console logger whilst in `serv.go`

Signed-off-by: Andrew Thornton <art27@cantab.net>
tags/v1.21.12.1
zeripath GitHub 6 years ago
parent
commit
2902b3a68c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      cmd/serv.go

+ 1
- 0
cmd/serv.go View File

@@ -70,6 +70,7 @@ func checkLFSVersion() {
}

func setup(logPath string) {
log.DelLogger("console")
setting.NewContext()
checkLFSVersion()
log.NewGitLogger(filepath.Join(setting.LogRootPath, logPath))


Loading…
Cancel
Save