Log writer abstract class. All Log writers must extend this class.
Class declared in SYSPATH/classes/log/writer.php on line 3.
array
$_log_levelslink to thisAllows the writer to have a unique key when stored.
echo
$writer
;
string
final
public
function
__toString()
{
return
spl_object_hash(
$this
);
}
Write an array of messages.
$writer
->write(
$messages
);
array
$messages
required - $messagesvoid
abstract
public
function
write(
array
$messages
);