Make WebStats logging report consistently as WEB STATS MODULE instead of VC, VS and WEBSTATS

0.7.2-post-fixes
Justin Clark-Casey (justincc) 2012-02-07 23:38:53 +00:00
parent 91d5495e26
commit 8c8e3ad3ff
1 changed files with 5 additions and 6 deletions

View File

@ -315,7 +315,7 @@ namespace OpenSim.Region.UserStatistics
public void OnRegisterCaps(UUID agentID, Caps caps) public void OnRegisterCaps(UUID agentID, Caps caps)
{ {
m_log.DebugFormat("[VC]: OnRegisterCaps: agentID {0} caps {1}", agentID, caps); m_log.DebugFormat("[WEB STATS MODULE]: OnRegisterCaps: agentID {0} caps {1}", agentID, caps);
string capsPath = "/CAPS/VS/" + UUID.Random(); string capsPath = "/CAPS/VS/" + UUID.Random();
caps.RegisterHandler("ViewerStats", caps.RegisterHandler("ViewerStats",
new RestStreamHandler("POST", capsPath, new RestStreamHandler("POST", capsPath,
@ -481,7 +481,7 @@ namespace OpenSim.Region.UserStatistics
if (!m_sessions.ContainsKey(agentID)) if (!m_sessions.ContainsKey(agentID))
{ {
m_log.Warn("[VS]: no session for stat disclosure"); m_log.Warn("[WEB STATS MODULE]: no session for stat disclosure");
return new UserSessionID(); return new UserSessionID();
} }
uid = m_sessions[agentID]; uid = m_sessions[agentID];
@ -688,14 +688,13 @@ namespace OpenSim.Region.UserStatistics
{ {
updatecmd.ExecuteNonQuery(); updatecmd.ExecuteNonQuery();
} }
catch catch (SqliteExecutionException)
(SqliteExecutionException)
{ {
m_log.Warn("[WEBSTATS]: failed to write stats to storage Execution Exception"); m_log.Warn("[WEB STATS MODULE]: failed to write stats to storage Execution Exception");
} }
catch (SqliteSyntaxException) catch (SqliteSyntaxException)
{ {
m_log.Warn("[WEBSTATS]: failed to write stats to storage SQL Syntax Exception"); m_log.Warn("[WEB STATS MODULE]: failed to write stats to storage SQL Syntax Exception");
} }
} }