PHP Класс Horde_Core_Log_Object, horde

С версии: 2.5.0
Автор: Michael Slusarz ([email protected])
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$_backtrace Horde_Support_Backtrace Exception backtrace.
$_exception Exception Original exception.
$_logged boolean Has this object been logged?
$_message string Log message.
$_priority integer Log priority.
$_timestamp integer Log timestamp.

Открытые методы

Метод Описание
__construct ( mixed $event, mixed $priority = null, array $options = [] ) Constructor.
__get ( $name )
__set ( $name, $value )
toArray ( ) : array Formats the object for use with Horde_Log_Logger#out().

Описание методов

__construct() публичный Метод

Constructor.
public __construct ( mixed $event, mixed $priority = null, array $options = [] )
$event mixed Either a string (log string), an array (containing 'level', 'message', and 'timestamp' entries) or an object with a getMessage() method (e.g. PEAR_Error, Exception).
$priority mixed The priority of the message. Integers correspond to Horde_Log constants. String values are auto translated to Horde_Log constants.
$options array Additional options: - file: (string) The filename to use in the log message. - line: (integer) The file line to use in the log message. - notracelog: (boolean) If true, don't output backtrace. - trace: (integer) The trace level of the original log location.

__get() публичный Метод

public __get ( $name )

__set() публичный Метод

public __set ( $name, $value )

toArray() публичный Метод

Formats the object for use with Horde_Log_Logger#out().
public toArray ( ) : array
Результат array Array containting log output information.

Описание свойств

$_backtrace защищенное свойство

Exception backtrace.
protected Horde_Support_Backtrace $_backtrace
Результат Horde_Support_Backtrace

$_exception защищенное свойство

Original exception.
protected Exception $_exception
Результат Exception

$_logged защищенное свойство

Has this object been logged?
protected bool $_logged
Результат boolean

$_message защищенное свойство

Log message.
protected string $_message
Результат string

$_priority защищенное свойство

Log priority.
protected int $_priority
Результат integer

$_timestamp защищенное свойство

Log timestamp.
protected int $_timestamp
Результат integer