* Added some debug info if MXP is enabled.
parent
e95fe66dd5
commit
03687e2b43
OpenSim/Client/MXP
|
@ -27,8 +27,10 @@
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Reflection;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Timers;
|
using System.Timers;
|
||||||
|
using log4net;
|
||||||
using MXP;
|
using MXP;
|
||||||
using Nini.Config;
|
using Nini.Config;
|
||||||
using OpenMetaverse;
|
using OpenMetaverse;
|
||||||
|
@ -44,6 +46,8 @@ namespace OpenSim.Client.MXP
|
||||||
*/
|
*/
|
||||||
public class MXPModule : IRegionModule
|
public class MXPModule : IRegionModule
|
||||||
{
|
{
|
||||||
|
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||||
|
|
||||||
private MXPPacketServer m_server;
|
private MXPPacketServer m_server;
|
||||||
|
|
||||||
private IConfigSource m_config;
|
private IConfigSource m_config;
|
||||||
|
@ -78,6 +82,8 @@ namespace OpenSim.Client.MXP
|
||||||
m_ticker.Elapsed += ticker_Elapsed;
|
m_ticker.Elapsed += ticker_Elapsed;
|
||||||
|
|
||||||
m_ticker.Start();
|
m_ticker.Start();
|
||||||
|
|
||||||
|
m_log.Info("[MXP] MXP Enabled and Listening");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue