/**
  * Create logPath if it does not already exist
  * @param string $value
  */
 public function setLogPath($value)
 {
     if (!file_exists($value)) {
         mkdir($value);
         chmod($value, 0777);
     }
     ZurmoFileLogger::setLogPath($value);
 }
 protected function writeLine($time, $requestId)
 {
     parent::addLog($requestId . self::SPLIT_CHARACTER . $time);
 }