* Applying EventQueueGetModule patch to try debug the case of the missing EQG.

0.6.1-post-fixes
Adam Frisby 2008-11-09 15:44:12 +00:00
parent ad987a9633
commit df8b92cc1e
1 changed files with 2 additions and 1 deletions

View File

@ -153,8 +153,9 @@ namespace OpenSim.Region.Environment.Modules.Framework
{
BlockingLLSDQueue queue = GetQueue(avatarID);
queue.Enqueue(ev);
} catch(NullReferenceException)
} catch(NullReferenceException e)
{
m_log.Debug("[EVENTQUEUE] Caught exception: " + e);
return false;
}
return true;