We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa4355b commit b6b1e71Copy full SHA for b6b1e71
routers/init.go
@@ -128,9 +128,9 @@ func GlobalInit(ctx context.Context) {
128
markup.Init()
129
130
if setting.EnableSQLite3 {
131
- log.Info("SQLite3 Supported")
+ log.Info("SQLite3 support is enabled")
132
} else if setting.Database.UseSQLite3 {
133
- 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.")
134
}
135
136
mustInitCtx(ctx, common.InitDBEngine)
0 commit comments