iLogLevel = \defined('LOG_INFO') ? LOG_INFO : 6; } else { $this->iLogLevel = null; } } protected function writeImplementation($mDesc) : bool { if (null === $this->iLogLevel) { return false; } if (\is_array($mDesc)) { $mDesc = \implode($this->sNewLine, $mDesc); } \openlog('rainloop', LOG_ODELAY, LOG_USER); $result = \syslog($this->iLogLevel, $mDesc); \closelog(); return $result; } protected function clearImplementation() : bool { return true; } }