aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/UserStatistics/WebStatsModule.cs
diff options
context:
space:
mode:
authorTeravus Ovares2009-04-10 08:30:21 +0000
committerTeravus Ovares2009-04-10 08:30:21 +0000
commit515bf6d7dcce10d5e32db489c0d6247bd3b2a615 (patch)
tree84a6d08e761a2f7d5758b44f2cc71dc98eaec5d7 /OpenSim/Region/UserStatistics/WebStatsModule.cs
parentHandle ObjectSpin* packets to spin physical prims on Ctrl+Shift+Drag (diff)
downloadopensim-SC_OLD-515bf6d7dcce10d5e32db489c0d6247bd3b2a615.zip
opensim-SC_OLD-515bf6d7dcce10d5e32db489c0d6247bd3b2a615.tar.gz
opensim-SC_OLD-515bf6d7dcce10d5e32db489c0d6247bd3b2a615.tar.bz2
opensim-SC_OLD-515bf6d7dcce10d5e32db489c0d6247bd3b2a615.tar.xz
* Patch from RemedyTomm Mantis 3440
* Revamps the server side texture pipeline * Textures should load faster, get clogged less, and be less blurry * Minor tweak to ensure the outgoing texture throttle stays private. * Fixes mantis 3440
Diffstat (limited to 'OpenSim/Region/UserStatistics/WebStatsModule.cs')
-rw-r--r--OpenSim/Region/UserStatistics/WebStatsModule.cs15
1 files changed, 14 insertions, 1 deletions
diff --git a/OpenSim/Region/UserStatistics/WebStatsModule.cs b/OpenSim/Region/UserStatistics/WebStatsModule.cs
index 3b83cc2..cdbf1db 100644
--- a/OpenSim/Region/UserStatistics/WebStatsModule.cs
+++ b/OpenSim/Region/UserStatistics/WebStatsModule.cs
@@ -676,7 +676,20 @@ namespace OpenSim.Region.UserStatistics
676 { 676 {
677 m_log.Debug("INSERT"); 677 m_log.Debug("INSERT");
678 updatecmd.CommandText = SQL_STATS_TABLE_INSERT; 678 updatecmd.CommandText = SQL_STATS_TABLE_INSERT;
679 updatecmd.ExecuteNonQuery(); 679 try
680 {
681 updatecmd.ExecuteNonQuery();
682 }
683 catch
684 (SqliteExecutionException)
685 {
686 m_log.Warn("[WEBSTATS]: failed to write stats to storage Execution Exception");
687 }
688 catch (SqliteSyntaxException)
689 {
690 m_log.Warn("[WEBSTATS]: failed to write stats to storage SQL Syntax Exception");
691 }
692
680 } 693 }
681 } 694 }
682 695