function SysLog::openConnection
Same name in other branches
- 9 core/modules/syslog/src/Logger/SysLog.php \Drupal\syslog\Logger\SysLog::openConnection()
- 8.9.x core/modules/syslog/src/Logger/SysLog.php \Drupal\syslog\Logger\SysLog::openConnection()
- 10 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
File
-
core/
modules/ syslog/ src/ Logger/ SysLog.php, line 55
Class
- SysLog
- Redirects logging messages to syslog.
Namespace
Drupal\syslog\LoggerCode
protected function openConnection() {
if (!$this->connectionOpened) {
// Do not connect if identity or facility are not configured.
$identity = $this->config
->get('identity');
$facility = $this->config
->get('facility');
if ($identity === NULL || $facility === NULL) {
return;
}
$this->connectionOpened = openlog($identity, LOG_NDELAY, $facility);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.