tune sqlite3 message (#17601)

This commit is contained in:
wxiaoguang 2021-11-10 02:55:24 +08:00 committed by GitHub
parent aa4355ba1f
commit b6b1e71665
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -128,9 +128,9 @@ func GlobalInit(ctx context.Context) {
markup.Init()
if setting.EnableSQLite3 {
log.Info("SQLite3 Supported")
log.Info("SQLite3 support is enabled")
} else if setting.Database.UseSQLite3 {
log.Fatal("SQLite3 is set in settings but NOT Supported")
log.Fatal("SQLite3 support is disabled, but it is used for database setting. Please get or build a Gitea release with SQLite3 support.")
}
mustInitCtx(ctx, common.InitDBEngine)