mirror of
https://github.com/opensim/opensim.git
synced 2026-07-20 22:55:38 +08:00
* 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:
@@ -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");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user