diff options
author | Justin Clark-Casey (justincc) | 2011-02-25 01:18:43 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-02-25 01:18:43 +0000 |
commit | beff0ac32f0575e7805fd0691ba3907b3d13b70c (patch) | |
tree | 657cba8c03de5849ac32f3214ecc2ae895e8cf8b | |
parent | Fix bug where having no maximum memory cache timeout would cause the flotsam ... (diff) | |
download | opensim-SC_OLD-beff0ac32f0575e7805fd0691ba3907b3d13b70c.zip opensim-SC_OLD-beff0ac32f0575e7805fd0691ba3907b3d13b70c.tar.gz opensim-SC_OLD-beff0ac32f0575e7805fd0691ba3907b3d13b70c.tar.bz2 opensim-SC_OLD-beff0ac32f0575e7805fd0691ba3907b3d13b70c.tar.xz |
log actual cache directory for FlotsamAssetCache instead of always logging the default
-rw-r--r-- | OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs b/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs index edb6710..90fb9b3 100644 --- a/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs +++ b/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs | |||
@@ -147,7 +147,7 @@ namespace Flotsam.RegionModules.AssetCache | |||
147 | } | 147 | } |
148 | 148 | ||
149 | m_CacheDirectory = assetConfig.GetString("CacheDirectory", m_DefaultCacheDirectory); | 149 | m_CacheDirectory = assetConfig.GetString("CacheDirectory", m_DefaultCacheDirectory); |
150 | m_log.InfoFormat("[FLOTSAM ASSET CACHE]: Cache Directory", m_DefaultCacheDirectory); | 150 | m_log.InfoFormat("[FLOTSAM ASSET CACHE]: Cache Directory", m_CacheDirectory); |
151 | 151 | ||
152 | m_MemoryCacheEnabled = assetConfig.GetBoolean("MemoryCacheEnabled", false); | 152 | m_MemoryCacheEnabled = assetConfig.GetBoolean("MemoryCacheEnabled", false); |
153 | m_MemoryExpiration = TimeSpan.FromHours(assetConfig.GetDouble("MemoryCacheTimeout", m_DefaultMemoryExpiration)); | 153 | m_MemoryExpiration = TimeSpan.FromHours(assetConfig.GetDouble("MemoryCacheTimeout", m_DefaultMemoryExpiration)); |