public void Init()
 {
     if (this._isInit)
     {
         return;
     }
     lock (this)
     {
         if (this._isInit)
         {
             return;
         }
         LoggerProxy.RegLogger(this);
         this._isInit = true;
     }
 }