Changed a cryptic debug message and a wrong comment

slimupdates
Diva Canto 2010-03-09 17:33:31 -08:00
parent dbb2edf1a6
commit c5bb51b443
2 changed files with 2 additions and 2 deletions

View File

@ -481,7 +481,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends
m_log.DebugFormat("[FRIENDS]: {0} offered friendship to {1}", principalID, friendID); m_log.DebugFormat("[FRIENDS]: {0} offered friendship to {1}", principalID, friendID);
// This user wants to be friends with the other user. // This user wants to be friends with the other user.
// Let's add both relations to the DB, but one of them is inactive (-1) // Let's add the relation backwards, in case the other is not online
FriendsService.StoreFriend(friendID, principalID.ToString(), 0); FriendsService.StoreFriend(friendID, principalID.ToString(), 0);
// Now let's ask the other user to be friends with this user // Now let's ask the other user to be friends with this user

View File

@ -334,7 +334,7 @@ namespace OpenSim.Services.Connectors.Hypergrid
} }
catch (Exception e) catch (Exception e)
{ {
m_log.Debug("[HGrid]: Exception " + e.Message); m_log.Debug("[USER AGENT CONNECTOR]: Unable to contact remote server ");
reason = "Exception: " + e.Message; reason = "Exception: " + e.Message;
return false; return false;
} }