mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	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>
This commit is contained in:
		@@ -70,6 +70,7 @@ func checkLFSVersion() {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func setup(logPath string) {
 | 
					func setup(logPath string) {
 | 
				
			||||||
 | 
						log.DelLogger("console")
 | 
				
			||||||
	setting.NewContext()
 | 
						setting.NewContext()
 | 
				
			||||||
	checkLFSVersion()
 | 
						checkLFSVersion()
 | 
				
			||||||
	log.NewGitLogger(filepath.Join(setting.LogRootPath, logPath))
 | 
						log.NewGitLogger(filepath.Join(setting.LogRootPath, logPath))
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user