1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-06 13:16:39 +02:00

Update SyslogHandler.php

move openlog() to write() method to use multiple facilities.
This commit is contained in:
davewwww
2013-05-02 19:32:35 +03:00
parent b264026cba
commit 12f12f2d4c

View File

@@ -89,9 +89,9 @@ class SyslogHandler extends AbstractProcessingHandler
throw new \UnexpectedValueException('Unknown facility value "'.$facility.'" given');
}
if (!openlog($ident, $logopts, $facility)) {
throw new \LogicException('Can\'t open syslog for ident "'.$ident.'" and facility "'.$facility.'"');
}
$this->ident = $ident;
$this->logopts = $logopts;
$this->facility = $facility;
}
/**
@@ -107,7 +107,10 @@ class SyslogHandler extends AbstractProcessingHandler
*/
protected function write(array $record)
{
syslog($this->logLevels[$record['level']], (string) $record['formatted']);
if (!openlog($this->ident, $this->logopts, $this->facility)) {
throw new \LogicException('Can\'t open syslog for ident "'.$this->ident.'" and facility "'.$this->facility.'"');
}
syslog($this->logLevels[$record['level']], (string)$record['formatted']);
}
/**