diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/UserStatistics/WebStatsModule.cs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/OpenSim/Region/UserStatistics/WebStatsModule.cs b/OpenSim/Region/UserStatistics/WebStatsModule.cs index 24a9418..f627e37 100644 --- a/OpenSim/Region/UserStatistics/WebStatsModule.cs +++ b/OpenSim/Region/UserStatistics/WebStatsModule.cs | |||
@@ -301,7 +301,7 @@ namespace OpenSim.Region.UserStatistics | |||
301 | 301 | ||
302 | public void OnRegisterCaps(UUID agentID, Caps caps) | 302 | public void OnRegisterCaps(UUID agentID, Caps caps) |
303 | { | 303 | { |
304 | m_log.DebugFormat("[VC]: OnRegisterCaps: agentID {0} caps {1}", agentID, caps); | 304 | m_log.DebugFormat("[WEB STATS MODULE]: OnRegisterCaps: agentID {0} caps {1}", agentID, caps); |
305 | string capsPath = "/CAPS/VS/" + UUID.Random(); | 305 | string capsPath = "/CAPS/VS/" + UUID.Random(); |
306 | caps.RegisterHandler("ViewerStats", | 306 | caps.RegisterHandler("ViewerStats", |
307 | new RestStreamHandler("POST", capsPath, | 307 | new RestStreamHandler("POST", capsPath, |
@@ -462,7 +462,7 @@ namespace OpenSim.Region.UserStatistics | |||
462 | 462 | ||
463 | if (!m_sessions.ContainsKey(agentID)) | 463 | if (!m_sessions.ContainsKey(agentID)) |
464 | { | 464 | { |
465 | m_log.Warn("[VS]: no session for stat disclosure"); | 465 | m_log.Warn("[WEB STATS MODULE]: no session for stat disclosure"); |
466 | return new UserSessionID(); | 466 | return new UserSessionID(); |
467 | } | 467 | } |
468 | uid = m_sessions[agentID]; | 468 | uid = m_sessions[agentID]; |
@@ -667,14 +667,13 @@ namespace OpenSim.Region.UserStatistics | |||
667 | { | 667 | { |
668 | updatecmd.ExecuteNonQuery(); | 668 | updatecmd.ExecuteNonQuery(); |
669 | } | 669 | } |
670 | catch | 670 | catch (SqliteExecutionException) |
671 | (SqliteExecutionException) | ||
672 | { | 671 | { |
673 | m_log.Warn("[WEBSTATS]: failed to write stats to storage Execution Exception"); | 672 | m_log.Warn("[WEB STATS MODULE]: failed to write stats to storage Execution Exception"); |
674 | } | 673 | } |
675 | catch (SqliteSyntaxException) | 674 | catch (SqliteSyntaxException) |
676 | { | 675 | { |
677 | m_log.Warn("[WEBSTATS]: failed to write stats to storage SQL Syntax Exception"); | 676 | m_log.Warn("[WEB STATS MODULE]: failed to write stats to storage SQL Syntax Exception"); |
678 | } | 677 | } |
679 | 678 | ||
680 | } | 679 | } |