diff options
author | zeripath <art27@cantab.net> | 2020-07-05 05:11:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-05 12:11:02 +0800 |
commit | c6d6c51ada19a06ad6d3d53f6d03234573eeca64 (patch) | |
tree | d88ef71e4f36eb66d857fbf9fc0147432eee0918 /routers/init.go | |
parent | 2ab185d3ab9e4d5a75912467d0b79331b0f94b50 (diff) | |
download | gitea-c6d6c51ada19a06ad6d3d53f6d03234573eeca64.tar.gz gitea-c6d6c51ada19a06ad6d3d53f6d03234573eeca64.zip |
Remove spurious logging (#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>
Diffstat (limited to 'routers/init.go')
-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 { |