Every instance of Zend_Log must contain a child object which is an implementation of Zend_Log_Adapter that provides the log storage.
The static class Zend_Log holds an array of Zend_Log instances in this variable that are created with registerLogger().
The static class Zend_Log holds an array of Zend_Log instances in this variable that are created with registerLogger().
Logging level mask, the bitwise OR of any of the Zend_Log::LEVEL_* constants that will be logged by this instance of Zend_Log. All other levels will be ignored.
When this class is instantiated by registerLogger, it is
A string which is automatically prefixed to any message sent to the Zend_Log::log() method.
A string which is automatically appended to any message sent to the Zend_Log::log() method.
Returns the instance of Zend_Log in the Zend_Log::$_instances array.
Class constructor. Zend_Log uses the singleton pattern. Only a single Zend_Log static class may be used, however instances of Zend_Log may be stored inside the Zend_Log static class by calling registerLogger().
PHP access mode of the file, either 'a'ppend or over'w'rite
Buffer, array of lines waiting to be written to the filesystem.
Number of lines in the buffer
Database adapter instance.
Filename on the filesystem where the log file is stored.
Holds the PHP resource for an open file, or null.
Termination character(s) that are automatically appended to each line.
Options to be set by setOption(). Sets the field names in the database table.
Options: buffer True: use buffering False: no buffering, write immediately
Name of the log table in the database.
Format a line before sending into the storage.
Sets the access mode of the log file on the filesystem
Class constructor. Pass it a database adapter and the table name of the log table.