diff options
Diffstat (limited to 'modules/base/conf.go')
-rw-r--r-- | modules/base/conf.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/base/conf.go b/modules/base/conf.go index 9dccc48f9d..720b861084 100644 --- a/modules/base/conf.go +++ b/modules/base/conf.go @@ -174,6 +174,12 @@ func newLogService() { func newCacheService() { CacheAdapter = Cfg.MustValue("cache", "ADAPTER", "memory") + if cache.EnableRedis { + log.Info("Redis Enabled") + } + if cache.EnableMemcache { + log.Info("Memcache Enabled") + } switch CacheAdapter { case "memory": |