diff options
author | Unknwon <u@gogs.io> | 2015-08-02 12:36:35 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-02 12:37:29 +0800 |
commit | cbb78b6a6331921403fb4cfcf45812efa89f6c3b (patch) | |
tree | 55bcb121601dc760c67d2335d4f8a8868c7989da /modules | |
parent | d496d0cc4d4d07fc77a7961e178225062f080d72 (diff) | |
download | gitea-cbb78b6a6331921403fb4cfcf45812efa89f6c3b.tar.gz gitea-cbb78b6a6331921403fb4cfcf45812efa89f6c3b.zip |
better wording
Diffstat (limited to 'modules')
-rw-r--r-- | modules/setting/setting.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 6b8eb5ecd7..c39fab4328 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -460,10 +460,10 @@ func newLogService() { func newCacheService() { CacheAdapter = Cfg.Section("cache").Key("ADAPTER").In("memory", []string{"memory", "redis", "memcache"}) if EnableRedis { - log.Info("Redis Enabled") + log.Info("Redis Supported") } if EnableMemcache { - log.Info("Memcache Enabled") + log.Info("Memcache Supported") } switch CacheAdapter { |