mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	* move log output to points where they are relefant * check explicit of sqlite3 in settings
This commit is contained in:
		@@ -133,12 +133,19 @@ func GlobalInit(ctx context.Context) {
 | 
				
			|||||||
	log.Trace("AppWorkPath: %s", setting.AppWorkPath)
 | 
						log.Trace("AppWorkPath: %s", setting.AppWorkPath)
 | 
				
			||||||
	log.Trace("Custom path: %s", setting.CustomPath)
 | 
						log.Trace("Custom path: %s", setting.CustomPath)
 | 
				
			||||||
	log.Trace("Log path: %s", setting.LogRootPath)
 | 
						log.Trace("Log path: %s", setting.LogRootPath)
 | 
				
			||||||
 | 
						checkRunMode()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Setup i18n
 | 
						// Setup i18n
 | 
				
			||||||
	InitLocales()
 | 
						InitLocales()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	NewServices()
 | 
						NewServices()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if setting.EnableSQLite3 {
 | 
				
			||||||
 | 
							log.Info("SQLite3 Supported")
 | 
				
			||||||
 | 
						} else if setting.Database.UseSQLite3 {
 | 
				
			||||||
 | 
							log.Fatal("SQLite3 is set in settings but NOT Supported")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if setting.InstallLock {
 | 
						if setting.InstallLock {
 | 
				
			||||||
		highlight.NewContext()
 | 
							highlight.NewContext()
 | 
				
			||||||
		external.RegisterParsers()
 | 
							external.RegisterParsers()
 | 
				
			||||||
@@ -172,10 +179,6 @@ func GlobalInit(ctx context.Context) {
 | 
				
			|||||||
		}
 | 
							}
 | 
				
			||||||
		eventsource.GetManager().Init()
 | 
							eventsource.GetManager().Init()
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if setting.EnableSQLite3 {
 | 
					 | 
				
			||||||
		log.Info("SQLite3 Supported")
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	checkRunMode()
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if err := repo_migrations.Init(); err != nil {
 | 
						if err := repo_migrations.Init(); err != nil {
 | 
				
			||||||
		log.Fatal("Failed to initialize repository migrations: %v", err)
 | 
							log.Fatal("Failed to initialize repository migrations: %v", err)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user