aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite
diff options
context:
space:
mode:
authorOren Hurvitz2014-04-24 14:19:03 +0300
committerOren Hurvitz2014-04-24 15:58:41 +0100
commitd15a3b10a3031b9552d67d2e2d435a689b448e2f (patch)
tree647c987c479a475ab247784cedef12779e92e7ff /OpenSim/Data/SQLite
parentFixed: hypergrid-linking stopped accepting the following format: "http://grid... (diff)
downloadopensim-SC_OLD-d15a3b10a3031b9552d67d2e2d435a689b448e2f.zip
opensim-SC_OLD-d15a3b10a3031b9552d67d2e2d435a689b448e2f.tar.gz
opensim-SC_OLD-d15a3b10a3031b9552d67d2e2d435a689b448e2f.tar.bz2
opensim-SC_OLD-d15a3b10a3031b9552d67d2e2d435a689b448e2f.tar.xz
When sending JSON-RPC calls (for UserProfile), use WebUtil instead of constructing the HTTP requests manually. This allows the calls to be logged when using "debug http all 6".
Diffstat (limited to 'OpenSim/Data/SQLite')
-rw-r--r--OpenSim/Data/SQLite/SQLiteUserProfilesData.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteUserProfilesData.cs b/OpenSim/Data/SQLite/SQLiteUserProfilesData.cs
index 0f5b4c8..5494091 100644
--- a/OpenSim/Data/SQLite/SQLiteUserProfilesData.cs
+++ b/OpenSim/Data/SQLite/SQLiteUserProfilesData.cs
@@ -584,9 +584,6 @@ namespace OpenSim.Data.SQLite
584 } 584 }
585 if(reader != null && reader.Read()) 585 if(reader != null && reader.Read())
586 { 586 {
587 m_log.DebugFormat("[PROFILES_DATA]" +
588 ": Getting data for {0}.", props.UserId);
589
590 props.WebUrl = (string)reader["profileURL"]; 587 props.WebUrl = (string)reader["profileURL"];
591 UUID.TryParse((string)reader["profileImage"], out props.ImageId); 588 UUID.TryParse((string)reader["profileImage"], out props.ImageId);
592 props.AboutText = (string)reader["profileAboutText"]; 589 props.AboutText = (string)reader["profileAboutText"];
@@ -601,9 +598,6 @@ namespace OpenSim.Data.SQLite
601 } 598 }
602 else 599 else
603 { 600 {
604 m_log.DebugFormat("[PROFILES_DATA]" +
605 ": No data for {0}", props.UserId);
606
607 props.WebUrl = string.Empty; 601 props.WebUrl = string.Empty;
608 props.ImageId = UUID.Zero; 602 props.ImageId = UUID.Zero;
609 props.AboutText = string.Empty; 603 props.AboutText = string.Empty;