static public WwiLogIntercept GetSingleton()
        {
            if (singleton == null)
            {
                singleton = new WwiLogIntercept();
            }

            return(singleton);
        }
 static public void SetSecondWwiLogger(IWwi secondWwiLog)
 {
     WwiLogIntercept.GetSingleton().secondWwiLog = secondWwiLog;
 }
 static public void CreateBaseWwiLogger(string description, string remoteAddress, ushort port)
 {
     WwiLogIntercept.GetSingleton().baseWwiLog = LogManager.GetWwi(description, remoteAddress, port);
 }