SyslogHandler
extends BaseHandler
in package
Uses
SetOptionsTrait
Tags
Table of Contents
- $filters : array<string|int, LogFilter>
- List of filters relevant only to this handler.
- $formatters : array<string|int, LogFormatter>
- Formatters for this handler
- $lastFacility : int
- Last facility name set by a syslog-handler instance.
- $lastIdent : string
- Last ident set by a syslog-handler instance.
- $options : SyslogOptions
- Options to be set by setOption().
- __construct() : mixed
- Class Constructor
- addFilter() : void
- Add a filter specific to this handler.
- log() : void
- Log a message to this handler.
- setOption() : bool
- Sets an option specific to the implementation of the log handler.
- write() : bool
- Write a message to the log.
- initializeSyslog() : void
- Initialize syslog / set ident and facility.
Properties
$filters
List of filters relevant only to this handler.
protected
array<string|int, LogFilter>
$filters
= []
$formatters
Formatters for this handler
protected
array<string|int, LogFormatter>
$formatters
= []
$lastFacility
Last facility name set by a syslog-handler instance.
protected
int
$lastFacility
$lastIdent
Last ident set by a syslog-handler instance.
protected
string
$lastIdent
$options
Options to be set by setOption().
protected
SyslogOptions
$options
Sets openlog and syslog options.
Methods
__construct()
Class Constructor
public
__construct([null|SyslogOptions $options = null ][, array<string|int, LogFormatter> $formatters = [] ][, array<string|int, LogFilter> $filters = [] ]) : mixed
Parameters
- $options : null|SyslogOptions = null
-
Log options.
- $formatters : array<string|int, LogFormatter> = []
-
Log formatter.
- $filters : array<string|int, LogFilter> = []
-
Log filter.
Return values
mixed —addFilter()
Add a filter specific to this handler.
public
addFilter(LogFilter $filter) : void
Handlers cannot undo the filtering at logger level
Parameters
- $filter : LogFilter
-
Filter to add.
Return values
void —log()
Log a message to this handler.
public
log(LogMessage $event) : void
Check all filters and expand it before delegating to the write method
Parameters
- $event : LogMessage
-
Log event.
Return values
void —setOption()
Sets an option specific to the implementation of the log handler.
public
setOption(string $optionKey, mixed $optionValue) : bool
Parameters
- $optionKey : string
-
Key name for the option to be changed. Keys are handler-specific.
- $optionValue : mixed
-
New value to assign to the option
Tags
Return values
bool —True.
write()
Write a message to the log.
public
write(LogMessage $event) : bool
Parameters
- $event : LogMessage
-
Log event.
Tags
Return values
bool —True.
initializeSyslog()
Initialize syslog / set ident and facility.
protected
initializeSyslog() : void