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
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
2006-05-26 05:29:17 +00:00
|
|
|
* Copyright (c) 2006, Cake Software Foundation, Inc.
|
|
|
|
* 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
|
2006-05-26 05:29:17 +00:00
|
|
|
* @copyright Copyright (c) 2006, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
|
|
|
* @since CakePHP v 0.2.9
|
|
|
|
* @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');
|
|
|
|
}
|
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
|
|
|
*/
|
2006-05-26 05:29:17 +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
|
|
|
|
* @return boolean Success
|
2005-07-04 04:30:45 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function write($type, $msg) {
|
|
|
|
$filename=LOGS . $type . '.log';
|
|
|
|
$output=date('y-m-d H:i:s') . ' ' . ucfirst($type) . ': ' . $msg . "\n";
|
|
|
|
$log=new File($filename);
|
|
|
|
return $log->append($output);
|
|
|
|
}
|
2005-05-21 22:40:51 +00:00
|
|
|
}
|
|
|
|
?>
|