aboutsummaryrefslogtreecommitdiff
path: root/internal/route/install.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/route/install.go')
-rw-r--r--internal/route/install.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/internal/route/install.go b/internal/route/install.go
index dcd7a727..9eba4dde 100644
--- a/internal/route/install.go
+++ b/internal/route/install.go
@@ -43,7 +43,7 @@ func checkRunMode() {
} else {
git.Debug = true
}
- log.Info("Run Mode: %s", strings.Title(macaron.Env))
+ log.Info("Run mode: %s", strings.Title(macaron.Env))
}
func NewServices() {
@@ -78,10 +78,13 @@ func GlobalInit() {
db.InitTestPullRequests()
}
if db.EnableSQLite3 {
- log.Info("SQLite3 Supported")
+ log.Info("SQLite3 is supported")
}
if setting.SupportMiniWinService {
- log.Info("Builtin Windows Service Supported")
+ log.Info("Builtin Windows Service is supported")
+ }
+ if setting.LoadAssetsFromDisk {
+ log.Info("Assets are loaded from disk")
}
checkRunMode()