class SyslogLogger extends Logger

Joomla! Syslog Log class

This class is designed to call the PHP Syslog function call which is then sent to the system wide log system. For Linux/Unix based systems this is the syslog subsystem, for the Windows based implementations this can be found in the Event Log. For Windows, permissions may prevent PHP from properly outputting messages.

Methods

__construct( array $options)

Constructor.

void
addEntry( LogEntry $entry)

Method to add an entry to the log.

__destruct()

Destructor.

Details

__construct( array $options)

Constructor.

Parameters

array $options &$options Log object options.

void addEntry( LogEntry $entry)

Method to add an entry to the log.

Parameters

LogEntry $entry The log entry object to add to the log.

Return Value

void

__destruct()

Destructor.