diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/ConfigurationMember.cs | 6 | ||||
-rw-r--r-- | OpenSim/Framework/Data.MySQL/MySQLDataStore.cs | 4 | ||||
-rw-r--r-- | OpenSim/Framework/Data.MySQL/MySQLManager.cs | 2 |
3 files changed, 6 insertions, 6 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 | ||
diff --git a/OpenSim/Framework/Data.MySQL/MySQLDataStore.cs b/OpenSim/Framework/Data.MySQL/MySQLDataStore.cs index 744d190..41450dc 100644 --- a/OpenSim/Framework/Data.MySQL/MySQLDataStore.cs +++ b/OpenSim/Framework/Data.MySQL/MySQLDataStore.cs | |||
@@ -183,10 +183,10 @@ namespace OpenSim.Framework.Data.MySQL | |||
183 | catch (Exception e) | 183 | catch (Exception e) |
184 | { | 184 | { |
185 | MainLog.Instance.Error("DATASTORE", "Failed create prim object, exception and data follows"); | 185 | MainLog.Instance.Error("DATASTORE", "Failed create prim object, exception and data follows"); |
186 | MainLog.Instance.Verbose(e.ToString()); | 186 | MainLog.Instance.Verbose("DATASTORE", e.ToString()); |
187 | foreach (DataColumn col in prims.Columns) | 187 | foreach (DataColumn col in prims.Columns) |
188 | { | 188 | { |
189 | MainLog.Instance.Verbose("Col: " + col.ColumnName + " => " + primRow[col]); | 189 | MainLog.Instance.Verbose("DATASTORE", "Col: " + col.ColumnName + " => " + primRow[col]); |
190 | } | 190 | } |
191 | } | 191 | } |
192 | } | 192 | } |
diff --git a/OpenSim/Framework/Data.MySQL/MySQLManager.cs b/OpenSim/Framework/Data.MySQL/MySQLManager.cs index 3c31d37..178a4cd 100644 --- a/OpenSim/Framework/Data.MySQL/MySQLManager.cs +++ b/OpenSim/Framework/Data.MySQL/MySQLManager.cs | |||
@@ -71,7 +71,7 @@ namespace OpenSim.Framework.Data.MySQL | |||
71 | 71 | ||
72 | dbcon.Open(); | 72 | dbcon.Open(); |
73 | 73 | ||
74 | MainLog.Instance.Verbose("MySQL connection established"); | 74 | MainLog.Instance.Verbose("MYSQL", "Connection established"); |
75 | } | 75 | } |
76 | catch (Exception e) | 76 | catch (Exception e) |
77 | { | 77 | { |