Commented a couple of not very useful log messages that are cluttering the log in sims that have objects belonging to foreign users.

0.6.3-post-fixes
diva 2009-02-12 18:43:49 +00:00
parent e2b2ac8715
commit 8ed9c3b8cd
2 changed files with 8 additions and 8 deletions

View File

@ -126,10 +126,10 @@ namespace OpenSim.Region.Communications.OGS1
Hashtable respData = (Hashtable) resp.Value;
if (respData.Contains("error_type"))
{
m_log.Warn("[GRID]: " +
"Error sent by user server when trying to get agent: (" +
(string) respData["error_type"] +
"): " + (string)respData["error_desc"]);
//m_log.Warn("[GRID]: " +
// "Error sent by user server when trying to get agent: (" +
// (string) respData["error_type"] +
// "): " + (string)respData["error_desc"]);
return null;
}
UUID sessionid = UUID.Zero;

View File

@ -349,10 +349,10 @@ namespace OpenSim.Region.CoreModules.World.Permissions
if (profile.UserProfile.GodLevel >= 200)
return true;
}
else
{
m_log.ErrorFormat("[PERMISSIONS]: Could not find user {0} for administrator check", user);
}
//else
//{
// m_log.ErrorFormat("[PERMISSIONS]: Could not find user {0} for administrator check", user);
//}
}
return false;