diff options
author | Adam Frisby | 2007-12-04 10:13:13 +0000 |
---|---|---|
committer | Adam Frisby | 2007-12-04 10:13:13 +0000 |
commit | 91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0 (patch) | |
tree | 7197561681677d4bd7202d9c7a49757b28bccd04 /OpenSim/Framework/ConfigurationMember.cs | |
parent | removed old svn eol-style property (diff) | |
download | opensim-SC_OLD-91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0.zip opensim-SC_OLD-91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0.tar.gz opensim-SC_OLD-91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0.tar.bz2 opensim-SC_OLD-91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0.tar.xz |
* Fixed a whole bunch of console messages.
Diffstat (limited to 'OpenSim/Framework/ConfigurationMember.cs')
-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 | ||