protected function SysLog::openConnection in Drupal 8
Same name and namespace in other branches
- 9 core/modules/syslog/src/Logger/SysLog.php \Drupal\syslog\Logger\SysLog::openConnection()
Opens a connection to the system logger.
1 call to SysLog::openConnection()
- SysLog::log in core/modules/ syslog/ src/ Logger/ SysLog.php 
- Logs with an arbitrary level.
File
- core/modules/ syslog/ src/ Logger/ SysLog.php, line 53 
Class
- SysLog
- Redirects logging messages to syslog.
Namespace
Drupal\syslog\LoggerCode
protected function openConnection() {
  if (!$this->connectionOpened) {
    $facility = $this->config
      ->get('facility');
    $this->connectionOpened = openlog($this->config
      ->get('identity'), LOG_NDELAY, $facility);
  }
}