2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Logging.
|
|
|
|
*
|
|
|
|
* Log messages to text files.
|
|
|
|
*
|
2010-10-03 16:38:58 +00:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2012-03-13 02:46:46 +00:00
|
|
|
* Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2012-03-13 02:46:46 +00:00
|
|
|
* @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Log
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 0.2.9
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2012-03-04 01:24:02 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Set up error level constants to be used within the framework if they are not defined within the
|
|
|
|
* system.
|
|
|
|
*
|
|
|
|
*/
|
2012-05-10 13:33:58 +00:00
|
|
|
if (!defined('LOG_ERROR')) {
|
|
|
|
define('LOG_ERROR', 2);
|
|
|
|
}
|
|
|
|
if (!defined('LOG_ERR')) {
|
|
|
|
define('LOG_ERR', LOG_ERROR);
|
|
|
|
}
|
2012-03-04 01:24:02 +00:00
|
|
|
if (!defined('LOG_WARNING')) {
|
|
|
|
define('LOG_WARNING', 3);
|
|
|
|
}
|
|
|
|
if (!defined('LOG_NOTICE')) {
|
|
|
|
define('LOG_NOTICE', 4);
|
|
|
|
}
|
|
|
|
if (!defined('LOG_DEBUG')) {
|
|
|
|
define('LOG_DEBUG', 5);
|
|
|
|
}
|
|
|
|
if (!defined('LOG_INFO')) {
|
|
|
|
define('LOG_INFO', 6);
|
|
|
|
}
|
2010-04-24 02:31:21 +00:00
|
|
|
|
2012-05-09 15:46:41 +00:00
|
|
|
App::uses('LogEngineCollection', 'Log');
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-01-22 23:11:49 +00:00
|
|
|
* Logs messages to configured Log adapters. One or more adapters can be configured
|
|
|
|
* using CakeLogs's methods. If you don't configure any adapters, and write to the logs
|
|
|
|
* a default FileLog will be autoconfigured for you.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2011-08-07 18:31:14 +00:00
|
|
|
* ### Configuring Log adapters
|
|
|
|
*
|
|
|
|
* You can configure log adapters in your applications `bootstrap.php` file. A sample configuration
|
|
|
|
* would look like:
|
|
|
|
*
|
|
|
|
* `CakeLog::config('my_log', array('engine' => 'FileLog'));`
|
|
|
|
*
|
|
|
|
* See the documentation on CakeLog::config() for more detail.
|
|
|
|
*
|
|
|
|
* ### Writing to the log
|
|
|
|
*
|
|
|
|
* You write to the logs using CakeLog::write(). See its documentation for more information.
|
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Log
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
class CakeLog {
|
2009-11-06 01:16:25 +00:00
|
|
|
|
2009-11-04 23:19:22 +00:00
|
|
|
/**
|
2012-05-09 15:46:41 +00:00
|
|
|
* LogEngineCollection class
|
2009-11-04 23:19:22 +00:00
|
|
|
*
|
2012-05-09 15:46:41 +00:00
|
|
|
* @var LogEngineCollection
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2012-05-09 15:46:41 +00:00
|
|
|
protected static $_Collection;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* initialize ObjectCollection
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected static function _init() {
|
|
|
|
self::$_Collection = new LogEngineCollection();
|
|
|
|
}
|
2009-11-04 23:19:22 +00:00
|
|
|
|
2009-11-06 00:16:46 +00:00
|
|
|
/**
|
|
|
|
* Configure and add a new logging stream to CakeLog
|
2011-06-20 00:28:40 +00:00
|
|
|
* You can use add loggers from app/Log/Engine use app.loggername, or any plugin/Log/Engine using plugin.loggername.
|
2010-01-22 23:11:49 +00:00
|
|
|
*
|
|
|
|
* ### Usage:
|
|
|
|
*
|
|
|
|
* {{{
|
|
|
|
* CakeLog::config('second_file', array(
|
|
|
|
* 'engine' => 'FileLog',
|
|
|
|
* 'path' => '/var/logs/my_app/'
|
|
|
|
* ));
|
|
|
|
* }}}
|
|
|
|
*
|
|
|
|
* Will configure a FileLog instance to use the specified path. All options that are not `engine`
|
|
|
|
* are passed onto the logging adapter, and handled there. Any class can be configured as a logging
|
2011-08-07 18:31:14 +00:00
|
|
|
* adapter as long as it implements the methods in CakeLogInterface.
|
2009-11-06 00:16:46 +00:00
|
|
|
*
|
2010-05-22 01:47:53 +00:00
|
|
|
* @param string $key The keyname for this logger, used to remove the logger later.
|
2009-11-06 00:16:46 +00:00
|
|
|
* @param array $config Array of configuration information for the logger
|
2009-11-06 01:13:15 +00:00
|
|
|
* @return boolean success of configuration.
|
2010-12-12 00:01:07 +00:00
|
|
|
* @throws CakeLogException
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2010-11-15 02:07:23 +00:00
|
|
|
public static function config($key, $config) {
|
2012-05-09 15:46:41 +00:00
|
|
|
if (!preg_match('/^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/', $key)) {
|
|
|
|
throw new CakeLogException(__d('cake_dev', 'Invalid key name'));
|
|
|
|
}
|
2009-11-06 00:16:46 +00:00
|
|
|
if (empty($config['engine'])) {
|
2011-03-20 15:35:43 +00:00
|
|
|
throw new CakeLogException(__d('cake_dev', 'Missing logger classname'));
|
2009-11-06 00:16:46 +00:00
|
|
|
}
|
2012-05-09 15:46:41 +00:00
|
|
|
if (empty(self::$_Collection)) {
|
|
|
|
self::_init();
|
2010-04-24 02:31:21 +00:00
|
|
|
}
|
2012-05-09 15:46:41 +00:00
|
|
|
self::$_Collection->load($key, $config);
|
2009-11-06 01:13:15 +00:00
|
|
|
return true;
|
2009-11-06 00:16:46 +00:00
|
|
|
}
|
|
|
|
|
2009-11-04 23:19:22 +00:00
|
|
|
/**
|
|
|
|
* Returns the keynames of the currently active streams
|
|
|
|
*
|
2010-01-22 23:11:49 +00:00
|
|
|
* @return array Array of configured log streams.
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2010-04-14 04:23:15 +00:00
|
|
|
public static function configured() {
|
2012-05-09 15:46:41 +00:00
|
|
|
if (empty(self::$_Collection)) {
|
|
|
|
self::_init();
|
|
|
|
}
|
|
|
|
return self::$_Collection->attached();
|
2009-11-04 23:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-11-15 01:42:57 +00:00
|
|
|
* Removes a stream from the active streams. Once a stream has been removed
|
|
|
|
* it will no longer have messages sent to it.
|
2009-11-04 23:19:22 +00:00
|
|
|
*
|
2011-07-29 02:03:44 +00:00
|
|
|
* @param string $streamName Key name of a configured stream to remove.
|
2009-11-04 23:19:22 +00:00
|
|
|
* @return void
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2010-04-14 04:23:15 +00:00
|
|
|
public static function drop($streamName) {
|
2012-05-09 15:46:41 +00:00
|
|
|
if (empty(self::$_Collection)) {
|
|
|
|
self::_init();
|
|
|
|
}
|
|
|
|
self::$_Collection->unload($streamName);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks wether $streamName is enabled
|
|
|
|
*
|
|
|
|
* @param string $streamName to check
|
|
|
|
* @return bool
|
|
|
|
* @throws CakeLogException
|
|
|
|
*/
|
|
|
|
public static function enabled($streamName) {
|
|
|
|
if (empty(self::$_Collection)) {
|
|
|
|
self::_init();
|
|
|
|
}
|
|
|
|
if (!isset(self::$_Collection->{$streamName})) {
|
|
|
|
throw new CakeLogException(__d('cake_dev', 'Stream %s not found', $streamName));
|
|
|
|
}
|
|
|
|
return self::$_Collection->enabled($streamName);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable stream
|
|
|
|
*
|
|
|
|
* @param string $streamName to enable
|
|
|
|
* @return void
|
|
|
|
* @throws CakeLogException
|
|
|
|
*/
|
|
|
|
public static function enable($streamName) {
|
|
|
|
if (empty(self::$_Collection)) {
|
|
|
|
self::_init();
|
|
|
|
}
|
|
|
|
if (!isset(self::$_Collection->{$streamName})) {
|
|
|
|
throw new CakeLogException(__d('cake_dev', 'Stream %s not found', $streamName));
|
|
|
|
}
|
|
|
|
self::$_Collection->enable($streamName);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disable stream
|
|
|
|
*
|
|
|
|
* @param string $streamName to disable
|
|
|
|
* @return void
|
|
|
|
* @throws CakeLogException
|
|
|
|
*/
|
|
|
|
public static function disable($streamName) {
|
|
|
|
if (empty(self::$_Collection)) {
|
|
|
|
self::_init();
|
|
|
|
}
|
|
|
|
if (!isset(self::$_Collection->{$streamName})) {
|
|
|
|
throw new CakeLogException(__d('cake_dev', 'Stream %s not found', $streamName));
|
|
|
|
}
|
|
|
|
self::$_Collection->disable($streamName);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the logging engine from the active streams.
|
|
|
|
*
|
|
|
|
* @see BaseLog
|
|
|
|
* @param string $streamName Key name of a configured stream to get.
|
|
|
|
* @return $mixed instance of BaseLog or false if not found
|
|
|
|
*/
|
|
|
|
public static function stream($streamName) {
|
|
|
|
if (empty(self::$_Collection)) {
|
|
|
|
self::_init();
|
|
|
|
}
|
|
|
|
if (!empty(self::$_Collection->{$streamName})) {
|
|
|
|
return self::$_Collection->{$streamName};
|
|
|
|
}
|
|
|
|
return false;
|
2009-11-04 23:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-11-06 00:45:04 +00:00
|
|
|
* Configures the automatic/default stream a FileLog.
|
2009-11-04 23:19:22 +00:00
|
|
|
*
|
|
|
|
* @return void
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2010-04-14 04:23:15 +00:00
|
|
|
protected static function _autoConfig() {
|
2012-05-09 15:46:41 +00:00
|
|
|
if (empty(self::$_Collection)) {
|
|
|
|
self::_init();
|
|
|
|
}
|
|
|
|
self::$_Collection->load('error', array(
|
|
|
|
'engine' => 'FileLog',
|
|
|
|
'types' => array('error', 'warning'),
|
|
|
|
'path' => LOGS,
|
|
|
|
));
|
2009-11-04 23:19:22 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-01-22 23:11:49 +00:00
|
|
|
* Writes the given message and type to all of the configured log adapters.
|
|
|
|
* Configured adapters are passed both the $type and $message variables. $type
|
|
|
|
* is one of the following strings/values.
|
|
|
|
*
|
|
|
|
* ### Types:
|
|
|
|
*
|
|
|
|
* - `LOG_WARNING` => 'warning',
|
|
|
|
* - `LOG_NOTICE` => 'notice',
|
|
|
|
* - `LOG_INFO` => 'info',
|
|
|
|
* - `LOG_DEBUG` => 'debug',
|
|
|
|
* - `LOG_ERR` => 'error',
|
|
|
|
* - `LOG_ERROR` => 'error'
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-01-22 23:11:49 +00:00
|
|
|
* ### Usage:
|
|
|
|
*
|
|
|
|
* Write a message to the 'warning' log:
|
2011-08-16 03:55:08 +00:00
|
|
|
*
|
2010-01-22 23:11:49 +00:00
|
|
|
* `CakeLog::write('warning', 'Stuff is broken here');`
|
|
|
|
*
|
|
|
|
* @param string $type Type of message being written
|
|
|
|
* @param string $message Message content to log
|
2008-05-30 11:40:08 +00:00
|
|
|
* @return boolean Success
|
|
|
|
*/
|
2010-04-14 04:23:15 +00:00
|
|
|
public static function write($type, $message) {
|
2012-05-09 15:46:41 +00:00
|
|
|
if (empty(self::$_Collection)) {
|
|
|
|
self::_init();
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
$levels = array(
|
2012-05-10 13:33:58 +00:00
|
|
|
LOG_ERROR => 'error',
|
|
|
|
LOG_ERR => 'error',
|
2008-05-30 11:40:08 +00:00
|
|
|
LOG_WARNING => 'warning',
|
|
|
|
LOG_NOTICE => 'notice',
|
|
|
|
LOG_DEBUG => 'debug',
|
2012-05-10 13:33:58 +00:00
|
|
|
LOG_INFO => 'info',
|
2008-05-30 11:40:08 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
if (is_int($type) && isset($levels[$type])) {
|
|
|
|
$type = $levels[$type];
|
|
|
|
}
|
2010-04-14 04:23:15 +00:00
|
|
|
if (empty(self::$_streams)) {
|
|
|
|
self::_autoConfig();
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2012-05-09 15:46:41 +00:00
|
|
|
foreach (self::$_Collection->enabled() as $streamName) {
|
|
|
|
$logger = self::$_Collection->{$streamName};
|
2012-05-08 12:08:56 +00:00
|
|
|
$config = $logger->config();
|
|
|
|
$types = $config['types'];
|
|
|
|
if (empty($types) || in_array($type, $types)) {
|
|
|
|
$logger->write($type, $message);
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-11-06 04:20:40 +00:00
|
|
|
return true;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2012-03-04 01:24:02 +00:00
|
|
|
|
2009-09-08 03:59:31 +00:00
|
|
|
}
|