Change an exception reporting to include the stack trace. "e.Message" just

_won't_ do. Might look more elegant, but it's too little information.
This commit is contained in:
Melanie
2010-05-18 15:30:08 +01:00
parent a6023ea89e
commit df04ccfdc3

View File

@@ -158,7 +158,7 @@ namespace OpenSim.Services.Connectors.Friends
}
catch (Exception e)
{
m_log.DebugFormat("[FRIENDS CONNECTOR]: Exception when contacting remote sim: {0}", e.Message);
m_log.DebugFormat("[FRIENDS CONNECTOR]: Exception when contacting remote sim: {0}", e.ToString());
}
return false;