diff options
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBase.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index 9d36986..feb3cf8 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -154,6 +154,12 @@ namespace OpenSim | |||
154 | proxyUrl = networkConfig.GetString("proxy_url", ""); | 154 | proxyUrl = networkConfig.GetString("proxy_url", ""); |
155 | proxyOffset = Int32.Parse(networkConfig.GetString("proxy_offset", "0")); | 155 | proxyOffset = Int32.Parse(networkConfig.GetString("proxy_offset", "0")); |
156 | } | 156 | } |
157 | |||
158 | IConfig startupConfig = Config.Configs["Startup"]; | ||
159 | if (startupConfig != null) | ||
160 | { | ||
161 | Util.LogOverloads = startupConfig.GetBoolean("LogOverloads", true); | ||
162 | } | ||
157 | } | 163 | } |
158 | 164 | ||
159 | protected virtual void LoadPlugins() | 165 | protected virtual void LoadPlugins() |