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

Improvement for the fix

To follow @Seldaek improvement recommendations.
Sorry for the rookie mistakes :)
This commit is contained in:
Pierre Lannoy
2019-08-15 23:23:59 +02:00
committed by GitHub
parent 226bc5fdf4
commit 144f2299ed

View File

@@ -82,7 +82,7 @@ class SyslogUdpHandler extends AbstractSyslogHandler
/**
* Make common syslog header (see rfc5424 or rfc3164)
*/
protected function makeCommonSyslogHeader(int $severity, DateTimeImmutable $datetime): string
protected function makeCommonSyslogHeader(int $severity, DateTimeInterface $datetime): string
{
$priority = $severity + $this->facility;
@@ -95,12 +95,12 @@ class SyslogUdpHandler extends AbstractSyslogHandler
}
if ($this->rfc === self::RFC3164) {
$datetime->setTimezone(new \DateTimeZone('UTC'));
}
$date = $datetime->format($this->dateFormats[$this->rfc]);
$datetime->setTimezone(new \DateTimeZone('UTC'));
}
$date = $datetime->format($this->dateFormats[$this->rfc]);
if ($this->rfc === self::RFC3164) {
return "<$priority>" .
if ($this->rfc === self::RFC3164) {
return "<$priority>" .
$date . " " .
$hostname . " " .
$this->ident . "[" . $pid . "]: ";
@@ -113,11 +113,6 @@ class SyslogUdpHandler extends AbstractSyslogHandler
}
}
protected function getDateTime(): string
{
return date($this->dateFormats[$this->rfc]);
}
/**
* Inject your own socket, mainly used for testing
*/