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

Update changelog

This commit is contained in:
Jordi Boggiano
2020-12-14 14:15:25 +01:00
parent d9cdb686e0
commit 1cb1cde8e8
3 changed files with 19 additions and 4 deletions

View File

@@ -33,8 +33,8 @@ class UdpSocket
$protocol = SOL_UDP;
// Check if we are using unix sockets.
if ($port === 0) {
$domain = AF_UNIX;
$protocol = IPPROTO_IP;
$domain = AF_UNIX;
$protocol = IPPROTO_IP;
}
$this->socket = socket_create($domain, SOCK_DGRAM, $protocol) ?: null;
}

View File

@@ -38,8 +38,8 @@ class SyslogUdpHandler extends AbstractSyslogHandler
protected $rfc;
/**
* @param string $host
* @param int $port
* @param string $host Either IP/hostname or a path to a unix socket (port must be 0 then)
* @param int $port Port number, or 0 if $host is a unix socket
* @param string|int $facility Either one of the names of the keys in $this->facilities, or a LOG_* facility constant
* @param string|int $level The minimum logging level at which this handler will be triggered
* @param bool $bubble Whether the messages that are handled can bubble up the stack or not