public static void RenewInstance()
 {
     lock (padlock)
     {
         _loggerInstance = NewInstance();
     }
 }
        public static IJJChatLogger GetInstance()
        {
            lock (padlock)
            {
                if (_loggerInstance == null)
                {
                    _loggerInstance = NewInstance();
                }

                return(_loggerInstance);
            }
        }