Source for file Log.php
Documentation is available at Log.php
* $Header: /repository/pear/Log/Log.php,v 1.64 2006/10/08 23:03:15 jon Exp $
* $Horde: horde/lib/Log.php,v 1.15 2000/06/29 23:39:45 jon Exp $
* @version $Revision: 1.64 $
define('PEAR_LOG_EMERG', 0); /** System is unusable */
define('PEAR_LOG_ALERT', 1); /** Immediate action required */
define('PEAR_LOG_CRIT', 2); /** Critical conditions */
define('PEAR_LOG_ERR', 3); /** Error conditions */
define('PEAR_LOG_WARNING', 4); /** Warning conditions */
define('PEAR_LOG_NOTICE', 5); /** Normal but significant */
define('PEAR_LOG_INFO', 6); /** Informational */
define('PEAR_LOG_DEBUG', 7); /** Debug-level messages */
define('PEAR_LOG_ALL', bindec('11111111')); /** All messages */
define('PEAR_LOG_NONE', bindec('00000000')); /** No message */
/* Log types for PHP's native error_log() function. */
define('PEAR_LOG_TYPE_SYSTEM', 0); /** Use PHP's system logger */
define('PEAR_LOG_TYPE_MAIL', 1); /** Use PHP's mail() function */
define('PEAR_LOG_TYPE_DEBUG', 2); /** Use PHP's debugging connection */
define('PEAR_LOG_TYPE_FILE', 3); /** Append to a file */
* The Log:: class implements both an abstraction for various logging
* mechanisms and the Subject end of a Subject-Observer pattern.
* @author Chuck Hagenbuch <chuck@horde.org>
* @author Jon Parise <jon@php.net>
* Indicates whether or not the log can been opened / connected.
* Instance-specific unique identification number.
* The label that uniquely identifies this set of log messages.
* The default priority to use when logging an event.
* The bitmask of allowed log levels.
* Holds all Log_observer objects that wish to be notified of new messages.
* Maps canonical format keys to position arguments for use in building
* Attempts to return a concrete Log instance of type $handler.
* @param string $handler The type of concrete Log subclass to return.
* Attempt to dynamically include the code for
* this subclass. Currently, valid values are
* 'console', 'syslog', 'sql', 'file', and 'mcal'.
* @param string $name The name of the actually log file, table, or
* other specific store to use. Defaults to an
* empty string, with which the subclass will
* attempt to do something intelligent.
* @param string $ident The identity reported to the log system.
* @param array $conf A hash containing any additional configuration
* information that a subclass might need.
* @param int $level Log messages up to and including this level.
* @return object Log The newly created concrete Log instance, or
function &factory($handler, $name = '', $ident = '', $conf = array(),
$class = 'Log_' . $handler;
$classfile = 'Log/' . $handler . '.php';
* Attempt to include our version of the named class, but don't treat
* a failure as fatal. The caller may have already included their own
* version of the named class.
/* If the class exists, return a new instance of it. */
$obj = &new $class($name, $ident, $conf, $level);
* Attempts to return a reference to a concrete Log instance of type
* $handler, only creating a new instance if no log instance with the same
* parameters currently exists.
* You should use this if there are multiple places you might create a
* logger, you don't want to create multiple loggers, and you don't want to
* check for the existance of one each time. The singleton pattern does all
* the checking work for you.
* <b>You MUST call this method with the $var = &Log::singleton() syntax.
* Without the ampersand (&) in front of the method name, you will not get
* a reference, you will get a copy.</b>
* @param string $handler The type of concrete Log subclass to return.
* Attempt to dynamically include the code for
* this subclass. Currently, valid values are
* 'console', 'syslog', 'sql', 'file', and 'mcal'.
* @param string $name The name of the actually log file, table, or
* other specific store to use. Defaults to an
* empty string, with which the subclass will
* attempt to do something intelligent.
* @param string $ident The identity reported to the log system.
* @param array $conf A hash containing any additional configuration
* information that a subclass might need.
* @param int $level Log messages up to and including this level.
* @return object Log The newly created concrete Log instance, or
function &singleton($handler, $name = '', $ident = '', $conf = array(),
if (!isset ($instances)) $instances = array();
$signature = serialize(array($handler, $name, $ident, $conf, $level));
if (!isset ($instances[$signature])) {
$instances[$signature] = &Log::factory($handler, $name, $ident,
return $instances[$signature];
* Abstract implementation of the open() method.
* Abstract implementation of the close() method.
* Abstract implementation of the flush() method.
* Abstract implementation of the log() method.
function log($message, $priority = null)
* A convenience function for logging a emergency event. It will log a
* message at the PEAR_LOG_EMERG log level.
* @param mixed $message String or object containing the message
* @return boolean True if the message was successfully logged.
* A convenience function for logging an alert event. It will log a
* message at the PEAR_LOG_ALERT log level.
* @param mixed $message String or object containing the message
* @return boolean True if the message was successfully logged.
* A convenience function for logging a critical event. It will log a
* message at the PEAR_LOG_CRIT log level.
* @param mixed $message String or object containing the message
* @return boolean True if the message was successfully logged.
* A convenience function for logging a error event. It will log a
* message at the PEAR_LOG_ERR log level.
* @param mixed $message String or object containing the message
* @return boolean True if the message was successfully logged.
* A convenience function for logging a warning event. It will log a
* message at the PEAR_LOG_WARNING log level.
* @param mixed $message String or object containing the message
* @return boolean True if the message was successfully logged.
* A convenience function for logging a notice event. It will log a
* message at the PEAR_LOG_NOTICE log level.
* @param mixed $message String or object containing the message
* @return boolean True if the message was successfully logged.
* A convenience function for logging a information event. It will log a
* message at the PEAR_LOG_INFO log level.
* @param mixed $message String or object containing the message
* @return boolean True if the message was successfully logged.
* A convenience function for logging a debug event. It will log a
* message at the PEAR_LOG_DEBUG log level.
* @param mixed $message String or object containing the message
* @return boolean True if the message was successfully logged.
* Returns the string representation of the message data.
* If $message is an object, _extractMessage() will attempt to extract
* the message text using a known method (such as a PEAR_Error object's
* getMessage() method). If a known method, cannot be found, the
* serialized representation of the object will be returned.
* If the message data is already a string, it will be returned unchanged.
* @param mixed $message The original message data. This may be a
* @return string The string representation of the message.
* If we've been given an object, attempt to extract the message using
* a known method. If we can't find such a method, default to the
* "human-readable" version of the object.
* We also use the human-readable format for arrays.
$message = $message->getMessage();
$message = $message->toString();
$message = (string) $message;
$message = $message->__toString();
$message = print_r($message, true);
if (isset ($message['message'])) {
$message = $message['message'];
$message = print_r($message, true);
/* Otherwise, we assume the message is a string. */
* Using debug_backtrace(), returns the file, line, and enclosing function
* name of the source code context from which log() was invoked.
* @param int $depth The initial number of frames we should step
* @return array Array containing three strings: the filename, the line,
* and the function name from which log() was called.
/* Start by generating a backtrace from the current call (here). */
* If we were ultimately invoked by the composite handler, we need to
* increase our depth one additional level to compensate.
if (strcasecmp(@$backtrace[$depth+ 1]['class'], 'Log_composite') == 0) {
* We're interested in the frame which invoked the log() function, so
* we need to walk back some number of frames into the backtrace. The
* $depth parameter tells us where to start looking. We go one step
* further back to find the name of the encapsulating function from
* which log() was called.
$file = @$backtrace[$depth]['file'];
$line = @$backtrace[$depth]['line'];
$func = @$backtrace[$depth + 1]['function'];
* However, if log() was called from one of our "shortcut" functions,
* we're going to need to go back an additional step.
if (in_array($func, array('emerg', 'alert', 'crit', 'err', 'warning',
'notice', 'info', 'debug'))) {
$file = @$backtrace[$depth + 1]['file'];
$line = @$backtrace[$depth + 1]['line'];
$func = @$backtrace[$depth + 2]['function'];
* If we couldn't extract a function name (perhaps because we were
* executed from the "main" context), provide a default value.
/* Return a 3-tuple containing (file, line, function). */
return array($file, $line, $func);
* Produces a formatted log line based on a format string and a set of
* variables representing the current log record and state.
* @return string Formatted log string.
function _format($format, $timestamp, $priority, $message)
* If the format string references any of the backtrace-driven
* variables (%5, %6, %7), generate the backtrace and fetch them.
* Build the formatted string. We use the sprintf() function's
* "argument swapping" capability to dynamically select and position
* the variables which will ultimately appear in the log string.
isset ($file) ? $file : '',
isset ($line) ? $line : '',
isset ($func) ? $func : '');
* Returns the string representation of a PEAR_LOG_* integer constant.
* @param int $priority A PEAR_LOG_* integer constant.
* @return string The string representation of $level.
return $levels[$priority];
* Returns the the PEAR_LOG_* integer constant for the given string
* representation of a priority name. This function performs a |