From d3f1599f275015d9cb2f225696c85ae2357ff682 Mon Sep 17 00:00:00 2001 From: BlueWall Date: Fri, 27 Jul 2012 01:52:07 -0400 Subject: [PATCH] add some notes --- .../Services/IntegrationService/IntegrationServiceBase.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/OpenSim/Services/IntegrationService/IntegrationServiceBase.cs b/OpenSim/Services/IntegrationService/IntegrationServiceBase.cs index 249f0a3a94..33c9efc8b9 100644 --- a/OpenSim/Services/IntegrationService/IntegrationServiceBase.cs +++ b/OpenSim/Services/IntegrationService/IntegrationServiceBase.cs @@ -209,10 +209,12 @@ namespace OpenSim.Services.IntegrationService // We can do build-up and tear-down of our plugin void OnExtensionChanged(object s, ExtensionNodeEventArgs args) { + // This is our plugin IntegrationPlugin ip = (IntegrationPlugin) args.ExtensionObject; - string file_path = args.ExtensionNode.Addin.GetFilePath(); + // We will need to get the name and path of the dll for the connector to + // be able to load the service in the refactored version... + // Might also use this to check for updates to alert the user Addin a = m_PluginManager.Registry.GetAddin(args.ExtensionNode.Addin.Id); - m_log.InfoFormat("[INTEGRATION SERVICE]: Plugin Change {0}",a.AddinFile); switch (args.Change)