2005-07-04 01:07:14 +00:00
|
|
|
<?php
|
2005-08-21 06:49:02 +00:00
|
|
|
/* SVN FILE: $Id$ */
|
2005-05-21 22:51:26 +00:00
|
|
|
/**
|
2005-10-18 22:27:39 +00:00
|
|
|
* Logging.
|
2005-12-27 03:33:44 +00:00
|
|
|
*
|
2005-10-18 22:27:39 +00:00
|
|
|
* Log messages to text files.
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2007-02-02 10:39:45 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
|
|
|
* Copyright 2005-2007, Cake Software Foundation, Inc.
|
2006-05-26 05:29:17 +00:00
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
2005-12-23 21:57:26 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
2005-12-27 03:33:44 +00:00
|
|
|
* @filesource
|
2007-02-02 10:39:45 +00:00
|
|
|
* @copyright Copyright 2005-2007, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
2006-05-26 05:29:17 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
2007-02-02 10:39:45 +00:00
|
|
|
* @since CakePHP(tm) v 0.2.9
|
2006-05-26 05:29:17 +00:00
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2005-08-21 06:49:02 +00:00
|
|
|
*/
|
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Included libraries.
|
|
|
|
*
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
if (!class_exists('File')) {
|
|
|
|
uses('file');
|
|
|
|
}
|
2007-04-12 00:34:16 +00:00
|
|
|
/**
|
|
|
|
* Set up error level constants to be used within the framework if they are not defined within the
|
|
|
|
* system.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
if (!defined('LOG_WARNING')) {
|
|
|
|
define('LOG_WARNING', 3);
|
|
|
|
}
|
|
|
|
if (!defined('LOG_ERR')) {
|
|
|
|
define('LOG_ERR', LOG_ERROR);
|
|
|
|
}
|
|
|
|
if (!defined('LOG_NOTICE')) {
|
|
|
|
define('LOG_NOTICE', 4);
|
|
|
|
}
|
|
|
|
if (!defined('LOG_DEBUG')) {
|
|
|
|
define('LOG_DEBUG', 5);
|
|
|
|
}
|
|
|
|
if (!defined('LOG_INFO')) {
|
|
|
|
define('LOG_INFO', 6);
|
|
|
|
}
|
2005-07-04 04:30:45 +00:00
|
|
|
/**
|
2005-08-21 06:49:02 +00:00
|
|
|
* Logs messages to text files
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
2005-07-04 04:30:45 +00:00
|
|
|
*/
|
2007-04-12 00:34:16 +00:00
|
|
|
class CakeLog {
|
2005-07-04 04:30:45 +00:00
|
|
|
/**
|
2005-10-18 22:27:39 +00:00
|
|
|
* Writes given message to a log file in the logs directory.
|
2005-07-04 04:30:45 +00:00
|
|
|
*
|
2005-12-27 03:33:44 +00:00
|
|
|
* @param string $type Type of log, becomes part of the log's filename
|
2005-10-18 22:27:39 +00:00
|
|
|
* @param string $msg Message to log
|
2007-10-22 16:09:35 +00:00
|
|
|
* @return boolean Success
|
2007-05-20 06:30:19 +00:00
|
|
|
* @access public
|
2005-07-04 04:30:45 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function write($type, $msg) {
|
2007-04-12 00:34:16 +00:00
|
|
|
$levels = array(
|
|
|
|
LOG_WARNING => 'warning',
|
|
|
|
LOG_NOTICE => 'notice',
|
|
|
|
LOG_INFO => 'info',
|
|
|
|
LOG_DEBUG => 'debug',
|
|
|
|
LOG_ERR => 'error',
|
|
|
|
LOG_ERROR => 'error'
|
|
|
|
);
|
|
|
|
|
|
|
|
if (is_int($type) && isset($levels[$type])) {
|
|
|
|
$type = $levels[$type];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($type == 'error' || $type == 'warning') {
|
|
|
|
$filename = LOGS . 'error.log';
|
|
|
|
} elseif (in_array($type, $levels)) {
|
|
|
|
$filename = LOGS . 'debug.log';
|
|
|
|
} else {
|
|
|
|
$filename = LOGS . $type . '.log';
|
|
|
|
}
|
2006-11-17 03:04:45 +00:00
|
|
|
$output = date('Y-m-d H:i:s') . ' ' . ucfirst($type) . ': ' . $msg . "\n";
|
|
|
|
$log = new File($filename);
|
2006-05-26 05:29:17 +00:00
|
|
|
return $log->append($output);
|
|
|
|
}
|
2005-05-21 22:40:51 +00:00
|
|
|
}
|
|
|
|
?>
|