mirror of
https://gitcode.com/gitea/gitea.git
synced 2025-06-01 15:55:15 +08:00
add Makefile
This commit is contained in:
@ -42,6 +42,10 @@ const (
|
||||
)
|
||||
|
||||
var (
|
||||
// Build information.
|
||||
BuildTime string
|
||||
BuildGitHash string
|
||||
|
||||
// App settings.
|
||||
AppVer string
|
||||
AppName string
|
||||
@ -471,6 +475,11 @@ var logLevels = map[string]string{
|
||||
func newLogService() {
|
||||
log.Info("%s %s", AppName, AppVer)
|
||||
|
||||
if len(BuildTime) > 0 {
|
||||
log.Info("Build Time: %s", BuildTime)
|
||||
log.Info("Build Git Hash: %s", BuildGitHash)
|
||||
}
|
||||
|
||||
// Get and check log mode.
|
||||
LogModes = strings.Split(Cfg.Section("log").Key("MODE").MustString("console"), ",")
|
||||
LogConfigs = make([]string, len(LogModes))
|
||||
|
Reference in New Issue
Block a user