RFC3164
RFC3164 = 0
A Handler for logging to a remote syslogd server.
Classes extending it should (in most cases) only implement write($record)
__construct(string $host, integer $port = 514, string|integer $facility = LOG_USER, string|integer $level = \Monolog\Logger::DEBUG, boolean $bubble = true, string $ident = 'php', integer $rfc = self::RFC5424)
| string | $host | Either IP/hostname or a path to a unix socket (port must be 0 then) |
| integer | $port | Port number, or 0 if $host is a unix socket |
| string|integer | $facility | Either one of the names of the keys in $this->facilities, or a LOG_* facility constant |
| string|integer | $level | The minimum logging level at which this handler will be triggered |
| boolean | $bubble | Whether the messages that are handled can bubble up the stack or not |
| string | $ident | Program name or tag for each log message. |
| integer | $rfc | RFC to format the message for. |
setFormatter(\Monolog\Formatter\FormatterInterface $formatter)
{@inheritdoc}
| \Monolog\Formatter\FormatterInterface | $formatter |