summaryrefslogtreecommitdiffstats
path: root/cmd/migrate_storage.go
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2021-09-14 02:24:57 +0100
committerGitHub <noreply@github.com>2021-09-13 21:24:57 -0400
commit04b233e9408296fa14eb7623b7dbe0d98c1865f1 (patch)
tree16455ab171377dec72a732c4fb604acc2cc3d4ca /cmd/migrate_storage.go
parent8af7a21085b73379e5f268c7a52ea77c51bb9246 (diff)
downloadgitea-04b233e9408296fa14eb7623b7dbe0d98c1865f1.tar.gz
gitea-04b233e9408296fa14eb7623b7dbe0d98c1865f1.zip
Always emit the configuration path (#17036)
Often when handling problems it is not clear which configuration file Gitea is using. This PR simply ensures that the configuration file is emitted. Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'cmd/migrate_storage.go')
-rw-r--r--cmd/migrate_storage.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/migrate_storage.go b/cmd/migrate_storage.go
index 8123716f9b..08524953b4 100644
--- a/cmd/migrate_storage.go
+++ b/cmd/migrate_storage.go
@@ -114,6 +114,7 @@ func runMigrateStorage(ctx *cli.Context) error {
log.Info("AppWorkPath: %s", setting.AppWorkPath)
log.Info("Custom path: %s", setting.CustomPath)
log.Info("Log path: %s", setting.LogRootPath)
+ log.Info("Configuration file: %s", setting.CustomConf)
setting.InitDBConfig()
if err := models.NewEngine(context.Background(), migrations.Migrate); err != nil {