public function init()
 {
     parent::init();
     if ($this->logFile == null) {
         $this->logFile = Yii::$app->getRuntimePath() . '/logs/mqs.log';
     } else {
         $this->logFile = Yii::getAlias($this->logFile);
     }
     $logPath = dirname($this->logFile);
     if (!is_dir($logPath)) {
         FileHelper::createDirectory($logPath, $this->dirMode, true);
     }
 }
 public function init()
 {
     parent::init();
 }