2009-11-04 18:19:22 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* File Storage stream for Logging
|
|
|
|
*
|
2010-10-03 12:38:58 -04:00
|
|
|
* PHP 5
|
2009-11-04 18:19:22 -05:00
|
|
|
*
|
2009-11-06 17:46:59 +11:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2010-10-25 07:58:22 +11:00
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-04 18:19:22 -05:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2010-10-25 07:58:22 +11:00
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-04 18:19:22 -05:00
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
2010-12-24 13:57:20 -05:00
|
|
|
* @package cake.libs.log
|
2009-11-04 18:19:22 -05:00
|
|
|
* @since CakePHP(tm) v 1.3
|
2009-11-06 17:51:51 +11:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2009-11-04 18:19:22 -05:00
|
|
|
*/
|
2010-07-24 15:21:14 -04:30
|
|
|
|
2009-11-04 18:19:22 -05:00
|
|
|
/**
|
2010-01-25 09:42:17 -05:00
|
|
|
* File Storage stream for Logging. Writes logs to different files
|
|
|
|
* based on the type of log it is.
|
2009-11-04 18:19:22 -05:00
|
|
|
*
|
2010-12-24 13:57:20 -05:00
|
|
|
* @package cake.libs.log
|
2009-11-04 18:19:22 -05:00
|
|
|
*/
|
2010-04-23 22:31:21 -04:00
|
|
|
class FileLog implements CakeLogInterface {
|
2009-11-05 19:41:43 -05:00
|
|
|
|
2009-11-04 18:19:22 -05:00
|
|
|
/**
|
2009-11-05 19:41:43 -05:00
|
|
|
* Path to save log files on.
|
|
|
|
*
|
|
|
|
* @var string
|
2009-11-14 23:19:25 +11:00
|
|
|
*/
|
2010-04-04 16:36:12 +10:00
|
|
|
protected $_path = null;
|
2009-11-05 19:41:43 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs a new File Logger.
|
|
|
|
*
|
|
|
|
* Options
|
|
|
|
*
|
|
|
|
* - `path` the path to save logs on.
|
2009-11-04 18:19:22 -05:00
|
|
|
*
|
2009-11-05 19:41:43 -05:00
|
|
|
* @param array $options Options for the FileLog, see above.
|
2009-11-04 18:19:22 -05:00
|
|
|
* @return void
|
2009-11-14 23:19:25 +11:00
|
|
|
*/
|
2010-04-14 00:25:14 -04:00
|
|
|
function __construct($options = array()) {
|
2009-11-05 19:41:43 -05: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 23:19:25 +11:00
|
|
|
*/
|
2010-04-14 00:25:14 -04:00
|
|
|
public function write($type, $message) {
|
2009-11-05 19:41:43 -05:00
|
|
|
$debugTypes = array('notice', 'info', 'debug');
|
2009-11-04 18:19:22 -05:00
|
|
|
|
|
|
|
if ($type == 'error' || $type == 'warning') {
|
2009-11-05 19:41:43 -05:00
|
|
|
$filename = $this->_path . 'error.log';
|
|
|
|
} elseif (in_array($type, $debugTypes)) {
|
|
|
|
$filename = $this->_path . 'debug.log';
|
2009-11-04 18:19:22 -05:00
|
|
|
} else {
|
2009-11-05 19:41:43 -05:00
|
|
|
$filename = $this->_path . $type . '.log';
|
2009-11-04 18:19:22 -05:00
|
|
|
}
|
|
|
|
$output = date('Y-m-d H:i:s') . ' ' . ucfirst($type) . ': ' . $message . "\n";
|
2010-11-16 21:54:05 -05:00
|
|
|
return file_put_contents($filename, $output, FILE_APPEND);
|
2009-11-04 18:19:22 -05:00
|
|
|
}
|
2010-05-11 08:07:49 +10:00
|
|
|
}
|