From ca52c3ef26d82e286eb9e2e6bf67eb2d876a5ed1 Mon Sep 17 00:00:00 2001 From: diva Date: Tue, 9 Jun 2009 20:20:30 +0000 Subject: Letting the Flotsam cache be enabled even when [AssetCache] section is missing. Thank you mcortez! --- OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs') diff --git a/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs b/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs index b7c269d..d09f5ef 100644 --- a/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs +++ b/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs @@ -161,17 +161,17 @@ namespace Flotsam.RegionModules.AssetCache if (name == Name) { + m_Enabled = true; + m_log.InfoFormat("[ASSET CACHE]: {0} enabled", this.Name); + IConfig assetConfig = source.Configs["AssetCache"]; if (assetConfig == null) { - m_log.Error("[ASSET CACHE]: AssetCache missing from OpenSim.ini"); + m_log.Warn("[ASSET CACHE]: AssetCache missing from OpenSim.ini, using defaults."); + m_log.InfoFormat("[ASSET CACHE]: Cache Directory", m_DefaultCacheDirectory); return; } - m_Enabled = true; - - m_log.InfoFormat("[ASSET CACHE]: {0} enabled", this.Name); - m_CacheDirectory = assetConfig.GetString("CacheDirectory", m_DefaultCacheDirectory); m_log.InfoFormat("[ASSET CACHE]: Cache Directory", m_DefaultCacheDirectory); @@ -182,6 +182,7 @@ namespace Flotsam.RegionModules.AssetCache m_WaitOnInprogressTimeout = assetConfig.GetInt("WaitOnInprogressTimeout", 3000); #endif + m_LogLevel = assetConfig.GetInt("LogLevel", 1); m_HitRateDisplay = (ulong)assetConfig.GetInt("HitRateDisplay", 1); m_FileExpiration = TimeSpan.FromHours(assetConfig.GetDouble("FileCacheTimeout", m_DefaultFileExpiration)); @@ -230,7 +231,7 @@ namespace Flotsam.RegionModules.AssetCache private void UpdateMemoryCache(string key, AssetBase asset) { - if (m_MemoryCacheEnabled) + if( m_MemoryCacheEnabled ) { if (m_MemoryExpiration > TimeSpan.Zero) { @@ -404,7 +405,7 @@ namespace Flotsam.RegionModules.AssetCache File.Delete(filename); } - if (m_MemoryCacheEnabled) + if( m_MemoryCacheEnabled ) m_MemoryCache.Remove(id); } catch (Exception e) @@ -423,7 +424,7 @@ namespace Flotsam.RegionModules.AssetCache Directory.Delete(dir); } - if (m_MemoryCacheEnabled) + if( m_MemoryCacheEnabled ) m_MemoryCache.Clear(); } -- cgit v1.1