diff options
author | Dan Lake | 2011-10-31 16:42:28 -0700 |
---|---|---|
committer | Dan Lake | 2011-10-31 16:42:28 -0700 |
commit | 3c55f3015f5c9bffa3580abf310fc52598fd7d6f (patch) | |
tree | f17a1cdc4a03eb1d05536fab310206c7e856bcfb /OpenSim/Region/Application/OpenSim.cs | |
parent | Merge branch 'master' of git://opensimulator.org/git/opensim (diff) | |
download | opensim-SC_OLD-3c55f3015f5c9bffa3580abf310fc52598fd7d6f.zip opensim-SC_OLD-3c55f3015f5c9bffa3580abf310fc52598fd7d6f.tar.gz opensim-SC_OLD-3c55f3015f5c9bffa3580abf310fc52598fd7d6f.tar.bz2 opensim-SC_OLD-3c55f3015f5c9bffa3580abf310fc52598fd7d6f.tar.xz |
Removed unused show commands from Scene.cs and SceneBase.cs. The show modules command in OpenSim.cs now shows both shared modules and region modules.
Diffstat (limited to 'OpenSim/Region/Application/OpenSim.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 7087cb0..60c130f 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -1045,6 +1045,19 @@ namespace OpenSim | |||
1045 | MainConsole.Instance.Output("Shared Module: " + module.Name); | 1045 | MainConsole.Instance.Output("Shared Module: " + module.Name); |
1046 | } | 1046 | } |
1047 | 1047 | ||
1048 | m_sceneManager.ForEachScene( | ||
1049 | delegate(Scene scene) | ||
1050 | { | ||
1051 | m_log.Error("The currently loaded modules in " + scene.RegionInfo.RegionName + " are:"); | ||
1052 | foreach (IRegionModule module in scene.Modules.Values) | ||
1053 | { | ||
1054 | if (!module.IsSharedModule) | ||
1055 | { | ||
1056 | m_log.Error("Region Module: " + module.Name); | ||
1057 | } | ||
1058 | } | ||
1059 | }); | ||
1060 | |||
1048 | MainConsole.Instance.Output(""); | 1061 | MainConsole.Instance.Output(""); |
1049 | break; | 1062 | break; |
1050 | 1063 | ||