diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/ConfigurationMember.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/ConfigurationMember.cs b/OpenSim/Framework/ConfigurationMember.cs index 15008ae..271c02c 100644 --- a/OpenSim/Framework/ConfigurationMember.cs +++ b/OpenSim/Framework/ConfigurationMember.cs | |||
@@ -147,19 +147,19 @@ namespace OpenSim.Framework | |||
147 | return; | 147 | return; |
148 | } | 148 | } |
149 | 149 | ||
150 | MainLog.Instance.Verbose("Calling Configuration Load Function..."); | 150 | MainLog.Instance.Verbose("CONFIG", "Calling Configuration Load Function..."); |
151 | this.loadFunction(); | 151 | this.loadFunction(); |
152 | 152 | ||
153 | if(configurationOptions.Count <= 0) | 153 | if(configurationOptions.Count <= 0) |
154 | { | 154 | { |
155 | MainLog.Instance.Error("No configuration options were specified for '" + this.configurationOptions + "'. Refusing to continue configuration."); | 155 | MainLog.Instance.Error("CONFIG", "No configuration options were specified for '" + this.configurationOptions + "'. Refusing to continue configuration."); |
156 | return; | 156 | return; |
157 | } | 157 | } |
158 | 158 | ||
159 | bool useFile = true; | 159 | bool useFile = true; |
160 | if (configurationPlugin == null) | 160 | if (configurationPlugin == null) |
161 | { | 161 | { |
162 | MainLog.Instance.Error("Configuration Plugin NOT LOADED!"); | 162 | MainLog.Instance.Error("CONFIG", "Configuration Plugin NOT LOADED!"); |
163 | return; | 163 | return; |
164 | } | 164 | } |
165 | 165 | ||