diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-01-15 05:17:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-14 23:17:03 +0200 |
commit | 84b147c7f0c2575723d3471783cb24078232fe7a (patch) | |
tree | 3b7ebea85a9be9deaffceb5e836c8073a604799b /routers/init.go | |
parent | 60a3297a33b2209ae7acf6fd84afd62e095e01aa (diff) | |
download | gitea-84b147c7f0c2575723d3471783cb24078232fe7a.tar.gz gitea-84b147c7f0c2575723d3471783cb24078232fe7a.zip |
Use IsProd instead of testing if it's equal. (#14336)
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'routers/init.go')
-rw-r--r-- | routers/init.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/init.go b/routers/init.go index ff2ddcc0b7..79e2f9130a 100644 --- a/routers/init.go +++ b/routers/init.go @@ -50,7 +50,7 @@ func checkRunMode() { default: macaron.Env = macaron.PROD macaron.ColorLog = false - setting.ProdMode = true + git.Debug = false } log.Info("Run Mode: %s", strings.Title(macaron.Env)) } |