diff options
Diffstat (limited to 'OpenSim/Region/CoreModules/Asset')
-rwxr-xr-x | OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs b/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs index 03d023c..5a48134 100755 --- a/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs +++ b/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs | |||
@@ -1075,14 +1075,14 @@ namespace OpenSim.Region.CoreModules.Asset | |||
1075 | { | 1075 | { |
1076 | case "status": | 1076 | case "status": |
1077 | if (m_MemoryCacheEnabled) | 1077 | if (m_MemoryCacheEnabled) |
1078 | con.Output("Memory Cache: {0} assets", null, m_MemoryCache.Count); | 1078 | con.Output("Memory Cache: {0} assets", m_MemoryCache.Count); |
1079 | else | 1079 | else |
1080 | con.Output("Memory cache disabled"); | 1080 | con.Output("Memory cache disabled"); |
1081 | 1081 | ||
1082 | if (m_FileCacheEnabled) | 1082 | if (m_FileCacheEnabled) |
1083 | { | 1083 | { |
1084 | int fileCount = GetFileCacheCount(m_CacheDirectory); | 1084 | int fileCount = GetFileCacheCount(m_CacheDirectory); |
1085 | con.Output("File Cache: {0} assets", null, fileCount); | 1085 | con.Output("File Cache: {0} assets", fileCount); |
1086 | } | 1086 | } |
1087 | else | 1087 | else |
1088 | { | 1088 | { |
@@ -1099,7 +1099,7 @@ namespace OpenSim.Region.CoreModules.Asset | |||
1099 | { | 1099 | { |
1100 | string RegionID = s.Remove(0,s.IndexOf("_")).Replace(".fac",""); | 1100 | string RegionID = s.Remove(0,s.IndexOf("_")).Replace(".fac",""); |
1101 | DateTime RegionDeepScanTMStamp = File.GetLastWriteTime(s); | 1101 | DateTime RegionDeepScanTMStamp = File.GetLastWriteTime(s); |
1102 | con.Output("Region: {0}, {1}", null, RegionID, RegionDeepScanTMStamp.ToString("MM/dd/yyyy hh:mm:ss")); | 1102 | con.Output("Region: {0}, {1}", RegionID, RegionDeepScanTMStamp.ToString("MM/dd/yyyy hh:mm:ss")); |
1103 | } | 1103 | } |
1104 | } | 1104 | } |
1105 | 1105 | ||
@@ -1192,7 +1192,7 @@ namespace OpenSim.Region.CoreModules.Asset | |||
1192 | } | 1192 | } |
1193 | m_cleanupRunning = false; | 1193 | m_cleanupRunning = false; |
1194 | } | 1194 | } |
1195 | con.Output("Completed check with {0} assets.", null, assetReferenceTotal); | 1195 | con.Output("Completed check with {0} assets.", assetReferenceTotal); |
1196 | }, null, "TouchAllSceneAssets", false); | 1196 | }, null, "TouchAllSceneAssets", false); |
1197 | 1197 | ||
1198 | break; | 1198 | break; |
@@ -1218,7 +1218,7 @@ namespace OpenSim.Region.CoreModules.Asset | |||
1218 | 1218 | ||
1219 | if (!DateTime.TryParse(s_expirationDate, out expirationDate)) | 1219 | if (!DateTime.TryParse(s_expirationDate, out expirationDate)) |
1220 | { | 1220 | { |
1221 | con.Output("{0} is not a valid date & time", null, cmd); | 1221 | con.Output("{0} is not a valid date & time", cmd); |
1222 | break; | 1222 | break; |
1223 | } | 1223 | } |
1224 | 1224 | ||
@@ -1229,7 +1229,7 @@ namespace OpenSim.Region.CoreModules.Asset | |||
1229 | 1229 | ||
1230 | break; | 1230 | break; |
1231 | default: | 1231 | default: |
1232 | con.Output("Unknown command {0}", null, cmd); | 1232 | con.Output("Unknown command {0}", cmd); |
1233 | break; | 1233 | break; |
1234 | } | 1234 | } |
1235 | } | 1235 | } |