* 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
This commit is contained in:
Teravus Ovares
2009-04-10 08:30:21 +00:00
parent 8e6c20b27f
commit 515bf6d7dc
6 changed files with 491 additions and 552 deletions

View File

@@ -676,7 +676,20 @@ namespace OpenSim.Region.UserStatistics
{
m_log.Debug("INSERT");
updatecmd.CommandText = SQL_STATS_TABLE_INSERT;
updatecmd.ExecuteNonQuery();
try
{
updatecmd.ExecuteNonQuery();
}
catch
(SqliteExecutionException)
{
m_log.Warn("[WEBSTATS]: failed to write stats to storage Execution Exception");
}
catch (SqliteSyntaxException)
{
m_log.Warn("[WEBSTATS]: failed to write stats to storage SQL Syntax Exception");
}
}
}