Log instead of crash (User login, getting friends list)

ThreadPoolClientBranch
Tedd Hansen 2008-01-11 15:46:43 +00:00
parent cdd378a2c2
commit 7f071dd193
1 changed files with 17 additions and 9 deletions

View File

@ -194,6 +194,9 @@ namespace OpenSim.Framework.Data.SQLite
using (SqliteCommand cmd = new SqliteCommand(SelectFriendsByUUID, g_conn))
{
cmd.Parameters.Add(new SqliteParameter(":ownerID", friendlistowner.UUID.ToString()));
try
{
using (IDataReader reader = cmd.ExecuteReader())
{
while (reader.Read())
@ -208,6 +211,11 @@ namespace OpenSim.Framework.Data.SQLite
reader.Close();
}
}
catch (Exception ex)
{
MainLog.Instance.Error("USER", "Exception getting friends list for user: " + ex.ToString());
}
}
return returnlist;
}