diff options
author | zeripath <art27@cantab.net> | 2020-07-05 17:09:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-05 12:09:13 -0400 |
commit | f984a7e6c6bd1a8d973d17c42af197888d020154 (patch) | |
tree | ddc99774fa58b87a4fd55f19896d7b62ee94677f | |
parent | c96da610c2db2427e6cbe183497bd6c09b15b9dc (diff) | |
download | gitea-f984a7e6c6bd1a8d973d17c42af197888d020154.tar.gz gitea-f984a7e6c6bd1a8d973d17c42af197888d020154.zip |
Remove spurious logging (#12139) (#12148)
Backport #12139
Unfortunately #10745 merged a spurious logging message. This PR removes this.
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
-rw-r--r-- | routers/init.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/routers/init.go b/routers/init.go index c891ec3149..964da6ced6 100644 --- a/routers/init.go +++ b/routers/init.go @@ -36,7 +36,6 @@ import ( "gitea.com/macaron/i18n" "gitea.com/macaron/macaron" - unknwoni18n "github.com/unknwon/i18n" ) func checkRunMode() { @@ -124,8 +123,6 @@ func GlobalInit(ctx context.Context) { // Setup i18n InitLocales() - log.Info("%s", unknwoni18n.Tr("en-US", "admin.dashboard.delete_repo_archives")) - NewServices() if setting.InstallLock { |