diff --git a/.nant/local.include b/.nant/local.include
index 5e02665f2a..c611bd2391 100644
--- a/.nant/local.include
+++ b/.nant/local.include
@@ -43,11 +43,6 @@
-
-
-
-
-
@@ -106,17 +101,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index ef492052fc..569dc8db25 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -97,6 +97,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP
///
public class LLClientView : IClientAPI, IClientCore, IClientIM, IClientChat, IClientIPEndpoint, IStatsCollector
{
+ ///
+ /// Debug packet level. At the moment, only 255 does anything (prints out all in and out packets).
+ ///
+ protected int m_debugPacketLevel = 0;
+
#region Events
public event GenericMessage OnGenericMessage;
@@ -472,6 +477,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
public void SetDebugPacketLevel(int newDebug)
{
+ m_debugPacketLevel = newDebug;
}
#region Client Methods
@@ -10952,7 +10958,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
LLUDPServer.LogPacketHeader(false, m_circuitCode, 0, packet.Type, (ushort)packet.Length);
#endregion BinaryStats
- m_udpServer.SendPacket(m_udpClient, packet, throttlePacketType, true);
+ OutPacket(packet, throttlePacketType, true);
}
///
@@ -10965,6 +10971,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
/// handles splitting manually
protected void OutPacket(Packet packet, ThrottleOutPacketType throttlePacketType, bool doAutomaticSplitting)
{
+ if (m_debugPacketLevel >= 255)
+ m_log.DebugFormat("[CLIENT]: Packet OUT {0}", packet.Type);
+
m_udpServer.SendPacket(m_udpClient, packet, throttlePacketType, doAutomaticSplitting);
}
@@ -11036,10 +11045,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP
/// OpenMetaverse.packet
public void ProcessInPacket(Packet Pack)
{
-// m_log.DebugFormat("[CLIENT]: Packet IN {0}", Pack);
+ if (m_debugPacketLevel >= 255)
+ m_log.DebugFormat("[CLIENT]: Packet IN {0}", Pack.Type);
if (!ProcessPacketMethod(Pack))
- m_log.Warn("[CLIENT]: unhandled packet " + Pack);
+ m_log.Warn("[CLIENT]: unhandled packet " + Pack.Type);
PacketPool.Instance.ReturnPacket(Pack);
}
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
index 369552f481..b7fcd7d558 100644
--- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
@@ -540,6 +540,9 @@ namespace OpenSim.Region.Framework.Scenes
// Fire after attach, so we don't get messy perms dialogs
// 3 == AttachedRez
objatt.CreateScriptInstances(0, true, m_parentScene.DefaultScriptEngine, 3);
+
+ // Do this last so that event listeners have access to all the effects of the attachment
+ m_parentScene.EventManager.TriggerOnAttach(objatt.LocalId, itemID, remoteClient.AgentId);
}
return objatt;
}
diff --git a/OpenSim/Region/Framework/Scenes/SceneManager.cs b/OpenSim/Region/Framework/Scenes/SceneManager.cs
index 6395d9868b..680c39a622 100644
--- a/OpenSim/Region/Framework/Scenes/SceneManager.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneManager.cs
@@ -422,7 +422,7 @@ namespace OpenSim.Region.Framework.Scenes
if (!scenePresence.IsChildAgent)
{
- m_log.ErrorFormat("Packet debug for {0} {1} set to {2}",
+ m_log.DebugFormat("Packet debug for {0} {1} set to {2}",
scenePresence.Firstname,
scenePresence.Lastname,
newDebug);
diff --git a/OpenSim/Services/Base/ServiceBase.cs b/OpenSim/Services/Base/ServiceBase.cs
index 8e24d8517c..91d5c5650c 100644
--- a/OpenSim/Services/Base/ServiceBase.cs
+++ b/OpenSim/Services/Base/ServiceBase.cs
@@ -26,7 +26,9 @@
*/
using System;
+using System.Collections.Generic;
using System.Reflection;
+using log4net;
using Nini.Config;
using OpenSim.Services.Interfaces;
@@ -34,6 +36,8 @@ namespace OpenSim.Services.Base
{
public class ServiceBase
{
+ private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
+
public T LoadPlugin(string dllName) where T:class
{
return LoadPlugin(dllName, new Object[0]);
@@ -61,8 +65,12 @@ namespace OpenSim.Services.Base
{
Assembly pluginAssembly = Assembly.LoadFrom(dllName);
+// m_log.DebugFormat("[SERVICE BASE]: Found assembly {0}", dllName);
+
foreach (Type pluginType in pluginAssembly.GetTypes())
{
+// m_log.DebugFormat("[SERVICE BASE]: Found type {0}", pluginType);
+
if (pluginType.IsPublic)
{
if (className != String.Empty &&
@@ -86,7 +94,15 @@ namespace OpenSim.Services.Base
}
catch (Exception e)
{
- Console.WriteLine("XXX Exception " + e.StackTrace);
+ List strArgs = new List();
+ foreach (Object arg in args)
+ strArgs.Add(arg.ToString());
+
+ m_log.Error(
+ string.Format(
+ "[SERVICE BASE]: Failed to load plugin {0} from {1} with args {2}",
+ interfaceName, dllName, string.Join(", ", strArgs.ToArray())), e);
+
return null;
}
}
@@ -95,4 +111,4 @@ namespace OpenSim.Services.Base
{
}
}
-}
+}
\ No newline at end of file
diff --git a/OpenSim/Services/Friends/FriendsServiceBase.cs b/OpenSim/Services/Friends/FriendsServiceBase.cs
index 9858972311..6ab0bff0a8 100644
--- a/OpenSim/Services/Friends/FriendsServiceBase.cs
+++ b/OpenSim/Services/Friends/FriendsServiceBase.cs
@@ -27,13 +27,12 @@
using System;
using System.Reflection;
+using log4net;
using Nini.Config;
using OpenSim.Framework;
using OpenSim.Data;
using OpenSim.Services.Interfaces;
using OpenSim.Services.Base;
-using Nini.Config;
-using log4net;
namespace OpenSim.Services.Friends
{
@@ -80,7 +79,11 @@ namespace OpenSim.Services.Friends
m_Database = LoadPlugin(dllName, new Object[] { connString, realm });
if (m_Database == null)
- throw new Exception("Could not find a storage interface in the given module");
+ {
+ throw new Exception(
+ string.Format(
+ "Could not find a storage interface {0} in the given StorageProvider {1}", "IFriendsData", dllName));
+ }
}
}
}
diff --git a/prebuild.xml b/prebuild.xml
index e19e636443..09d78e9e22 100644
--- a/prebuild.xml
+++ b/prebuild.xml
@@ -1539,42 +1539,6 @@
-
-
-
- ../../../../bin/
-
-
-
-
- ../../../../bin/
-
-
-
- ../../../../bin/
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -1599,7 +1563,6 @@
-
@@ -1639,7 +1602,6 @@
-
@@ -1713,10 +1675,7 @@
-
-
-
@@ -2785,7 +2744,6 @@
-
@@ -3019,7 +2977,6 @@
-
@@ -3083,7 +3040,6 @@
-