1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-06 05:07:36 +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) * 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; $priority = $severity + $this->facility;
@@ -95,12 +95,12 @@ class SyslogUdpHandler extends AbstractSyslogHandler
} }
if ($this->rfc === self::RFC3164) { if ($this->rfc === self::RFC3164) {
$datetime->setTimezone(new \DateTimeZone('UTC')); $datetime->setTimezone(new \DateTimeZone('UTC'));
} }
$date = $datetime->format($this->dateFormats[$this->rfc]); $date = $datetime->format($this->dateFormats[$this->rfc]);
if ($this->rfc === self::RFC3164) { if ($this->rfc === self::RFC3164) {
return "<$priority>" . return "<$priority>" .
$date . " " . $date . " " .
$hostname . " " . $hostname . " " .
$this->ident . "[" . $pid . "]: "; $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 * Inject your own socket, mainly used for testing
*/ */