2009-11-04 23:19:22 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* File Storage stream for Logging
|
|
|
|
*
|
2010-10-03 16:38:58 +00:00
|
|
|
* PHP 5
|
2009-11-04 23:19:22 +00:00
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2010-10-24 20:58:22 +00:00
|
|
|
* Copyright 2005-2010, 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.
|
|
|
|
*
|
2010-10-24 20:58:22 +00:00
|
|
|
* @copyright Copyright 2005-2010, 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
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.libs.log
|
2009-11-04 23:19:22 +00:00
|
|
|
* @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
|
|
|
*/
|
2010-07-24 19:51:14 +00:00
|
|
|
|
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
|
|
|
*
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.libs.log
|
2009-11-04 23:19:22 +00:00
|
|
|
*/
|
2010-04-24 02:31:21 +00:00
|
|
|
class FileLog implements CakeLogInterface {
|
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
|
|
|
*/
|
2010-04-04 06:36:12 +00:00
|
|
|
protected $_path = null;
|
2009-11-06 00:41:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
*/
|
2010-04-14 04:25:14 +00:00
|
|
|
function __construct($options = array()) {
|
2009-11-06 00:41:43 +00:00
|
|
|
$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
|
|
|
*/
|
2010-04-14 04:25:14 +00:00
|
|
|
public 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";
|
2010-11-17 02:54:05 +00:00
|
|
|
return file_put_contents($filename, $output, FILE_APPEND);
|
2009-11-04 23:19:22 +00:00
|
|
|
}
|
2010-05-10 22:07:49 +00:00
|
|
|
}
|