diff options
author | Sean Dague | 2007-08-31 13:03:39 +0000 |
---|---|---|
committer | Sean Dague | 2007-08-31 13:03:39 +0000 |
commit | 2163fc75eb87a7324b566b4047a9d2fa67044154 (patch) | |
tree | cd193cc0508fb90213820a4c9bde89b118b15fc5 /OpenSim/Region/Storage | |
parent | Added a Debug method to the Console/log class that has the Conditional attrib... (diff) | |
download | opensim-SC_OLD-2163fc75eb87a7324b566b4047a9d2fa67044154.zip opensim-SC_OLD-2163fc75eb87a7324b566b4047a9d2fa67044154.tar.gz opensim-SC_OLD-2163fc75eb87a7324b566b4047a9d2fa67044154.tar.bz2 opensim-SC_OLD-2163fc75eb87a7324b566b4047a9d2fa67044154.tar.xz |
remove some more rote Verbose strings, leave only ones that actually have something
interesting to say
Diffstat (limited to 'OpenSim/Region/Storage')
-rw-r--r-- | OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs index 9f204e0..5f7360e 100644 --- a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs +++ b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs | |||
@@ -61,7 +61,6 @@ namespace OpenSim.DataStore.MonoSqliteStorage | |||
61 | ds.Tables.Add(createPrimTable()); | 61 | ds.Tables.Add(createPrimTable()); |
62 | setupPrimCommands(primDa, conn); | 62 | setupPrimCommands(primDa, conn); |
63 | primDa.Fill(ds.Tables["prims"]); | 63 | primDa.Fill(ds.Tables["prims"]); |
64 | MainLog.Instance.Verbose("DATASTORE", "Populated Prim Definitions"); | ||
65 | 64 | ||
66 | ds.Tables.Add(createShapeTable()); | 65 | ds.Tables.Add(createShapeTable()); |
67 | setupShapeCommands(shapeDa, conn); | 66 | setupShapeCommands(shapeDa, conn); |
@@ -78,7 +77,6 @@ namespace OpenSim.DataStore.MonoSqliteStorage | |||
78 | { | 77 | { |
79 | MainLog.Instance.Verbose("DATASTORE", "Caught fill error on primshapes table"); | 78 | MainLog.Instance.Verbose("DATASTORE", "Caught fill error on primshapes table"); |
80 | } | 79 | } |
81 | MainLog.Instance.Verbose("DATASTORE", "Populated Prim Shapes"); | ||
82 | return; | 80 | return; |
83 | } | 81 | } |
84 | 82 | ||
@@ -186,7 +184,6 @@ namespace OpenSim.DataStore.MonoSqliteStorage | |||
186 | } | 184 | } |
187 | } | 185 | } |
188 | } | 186 | } |
189 | MainLog.Instance.Verbose("DATASTORE", "Sqlite - LoadObjects found " + prims.Rows.Count + " primitives"); | ||
190 | return retvals; | 187 | return retvals; |
191 | } | 188 | } |
192 | 189 | ||