\JLogEntry
Joomla! Log Entry class
This class is designed to hold log entries for either writing to an engine, or for
supported engines, retrieving lists and building in memory (PHP based) search operations.
Synopsis
class JLogEntry
{
- // members
- public $category;
- public JDate $date;
- public $message;
- public $priority;
- protected $priorities;
- // methods
- public void __construct()
Members
protected
- $priorities
—
array
List of available log priority levels [Based on the Syslog default levels].
public
- $category
—
string
Application responsible for log entry. - $date
—
JDate
The date the message was logged. - $message
—
string
Message to be logged. - $priority
—
string
The priority of the message to be logged.