diff options
author | Justin Clark-Casey (justincc) | 2011-11-01 21:02:03 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-11-01 21:02:03 +0000 |
commit | 9ef5107157ee04b9ca7b9d41661f3f3a2b3f5cec (patch) | |
tree | e368ec0097eff85a04555010b0fc910f14ba3cf1 /OpenSim/Region/Application/OpenSim.cs | |
parent | Retain a reference to an action thread rather than starting an infinite loop ... (diff) | |
parent | Merge branch 'master' of git://opensimulator.org/git/opensim (diff) | |
download | opensim-SC-9ef5107157ee04b9ca7b9d41661f3f3a2b3f5cec.zip opensim-SC-9ef5107157ee04b9ca7b9d41661f3f3a2b3f5cec.tar.gz opensim-SC-9ef5107157ee04b9ca7b9d41661f3f3a2b3f5cec.tar.bz2 opensim-SC-9ef5107157ee04b9ca7b9d41661f3f3a2b3f5cec.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
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 | ||