2009-11-04 23:19:22 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* File Storage stream for Logging
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2011-05-31 02:46:14 +00:00
|
|
|
* Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-04 23:19:22 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2011-05-31 02:46:14 +00:00
|
|
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-04 23:19:22 +00:00
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.log
|
|
|
|
* @since CakePHP(tm) v 1.3
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2009-11-04 23:19:22 +00:00
|
|
|
*/
|
2009-11-21 20:21:19 +00:00
|
|
|
if (!class_exists('File')) {
|
|
|
|
require LIBS . 'file.php';
|
|
|
|
}
|
2009-11-04 23:19:22 +00:00
|
|
|
/**
|
2010-01-25 14:42:17 +00:00
|
|
|
* File Storage stream for Logging. Writes logs to different files
|
|
|
|
* based on the type of log it is.
|
2009-11-04 23:19:22 +00:00
|
|
|
*
|
2009-11-06 04:21:40 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.log
|
2009-11-04 23:19:22 +00:00
|
|
|
*/
|
2009-11-06 00:16:46 +00:00
|
|
|
class FileLog {
|
2009-11-06 00:41:43 +00:00
|
|
|
|
2009-11-04 23:19:22 +00:00
|
|
|
/**
|
2009-11-06 00:41:43 +00:00
|
|
|
* Path to save log files on.
|
|
|
|
*
|
|
|
|
* @var string
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2009-11-06 00:41:43 +00:00
|
|
|
var $_path = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs a new File Logger.
|
|
|
|
*
|
|
|
|
* Options
|
|
|
|
*
|
|
|
|
* - `path` the path to save logs on.
|
2009-11-04 23:19:22 +00:00
|
|
|
*
|
2009-11-06 00:41:43 +00:00
|
|
|
* @param array $options Options for the FileLog, see above.
|
2009-11-04 23:19:22 +00:00
|
|
|
* @return void
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2009-11-06 00:41:43 +00:00
|
|
|
function FileLog($options = array()) {
|
|
|
|
$options += array('path' => LOGS);
|
|
|
|
$this->_path = $options['path'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements writing to log files.
|
|
|
|
*
|
|
|
|
* @param string $type The type of log you are making.
|
|
|
|
* @param string $message The message you want to log.
|
|
|
|
* @return boolean success of write.
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2009-11-04 23:19:22 +00:00
|
|
|
function write($type, $message) {
|
2009-11-06 00:41:43 +00:00
|
|
|
$debugTypes = array('notice', 'info', 'debug');
|
2009-11-04 23:19:22 +00:00
|
|
|
|
|
|
|
if ($type == 'error' || $type == 'warning') {
|
2009-11-06 00:41:43 +00:00
|
|
|
$filename = $this->_path . 'error.log';
|
|
|
|
} elseif (in_array($type, $debugTypes)) {
|
|
|
|
$filename = $this->_path . 'debug.log';
|
2009-11-04 23:19:22 +00:00
|
|
|
} else {
|
2009-11-06 00:41:43 +00:00
|
|
|
$filename = $this->_path . $type . '.log';
|
2009-11-04 23:19:22 +00:00
|
|
|
}
|
|
|
|
$output = date('Y-m-d H:i:s') . ' ' . ucfirst($type) . ': ' . $message . "\n";
|
|
|
|
$log = new File($filename, true);
|
|
|
|
if ($log->writable()) {
|
|
|
|
return $log->append($output);
|
|
|
|
}
|
|
|
|
}
|
2010-05-10 22:07:49 +00:00
|
|
|
}
|