blob: 03dc6400580820a1f90c65b6ea54b660cb88452b [file] [log] [blame]
adminb0dd10f2006-08-25 17:25:49 +00001<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
2/**
3 * Code Igniter
4 *
5 * An open source application development framework for PHP 4.3.2 or newer
6 *
7 * @package CodeIgniter
8 * @author Rick Ellis
9 * @copyright Copyright (c) 2006, pMachine, Inc.
admine334c472006-10-21 19:44:22 +000010 * @license http://www.codeignitor.com/user_guide/license.html
adminb0dd10f2006-08-25 17:25:49 +000011 * @link http://www.codeigniter.com
12 * @since Version 1.0
13 * @filesource
14 */
admine334c472006-10-21 19:44:22 +000015
adminb0dd10f2006-08-25 17:25:49 +000016// ------------------------------------------------------------------------
17
18/**
19 * Logging Class
admine334c472006-10-21 19:44:22 +000020 *
adminb0dd10f2006-08-25 17:25:49 +000021 * @package CodeIgniter
22 * @subpackage Libraries
23 * @category Logging
24 * @author Rick Ellis
25 * @link http://www.codeigniter.com/user_guide/general/errors.html
26 */
27class CI_Log {
28
29 var $log_path;
30 var $_threshold = 1;
31 var $_date_fmt = 'Y-m-d H:i:s';
32 var $_enabled = TRUE;
33 var $_levels = array('ERROR' => '1', 'DEBUG' => '2', 'INFO' => '3', 'ALL' => '4');
34
35 /**
36 * Constructor
37 *
38 * @access public
39 * @param string the log file path
40 * @param string the error threshold
41 * @param string the date formatting codes
42 */
admin633ec372006-09-15 20:43:32 +000043 function CI_Log()
44 {
admin7099a582006-10-10 17:47:59 +000045 $config = get_config();
admin633ec372006-09-15 20:43:32 +000046
47 $this->log_path = ($config['log_path'] != '') ? $config['log_path'] : BASEPATH.'logs/';
admin1cf89aa2006-09-03 18:24:39 +000048
adminb0dd10f2006-08-25 17:25:49 +000049 if ( ! is_dir($this->log_path) OR ! is_writable($this->log_path))
50 {
51 $this->_enabled = FALSE;
52 }
53
admin633ec372006-09-15 20:43:32 +000054 if (is_numeric($config['log_threshold']))
adminb0dd10f2006-08-25 17:25:49 +000055 {
admin633ec372006-09-15 20:43:32 +000056 $this->_threshold = $config['log_threshold'];
adminb0dd10f2006-08-25 17:25:49 +000057 }
58
admin633ec372006-09-15 20:43:32 +000059 if ($config['log_date_format'] != '')
adminb0dd10f2006-08-25 17:25:49 +000060 {
admin633ec372006-09-15 20:43:32 +000061 $this->_date_fmt = $config['log_date_format'];
adminb0dd10f2006-08-25 17:25:49 +000062 }
63 }
adminb0dd10f2006-08-25 17:25:49 +000064
65 // --------------------------------------------------------------------
66
67 /**
68 * Write Log File
69 *
70 * Generally this function will be called using the global log_message() function
71 *
72 * @access public
73 * @param string the error level
74 * @param string the error message
75 * @param bool whether the error is a native PHP error
76 * @return bool
77 */
78 function write_log($level = 'error', $msg, $php_error = FALSE)
79 {
80 if ($this->_enabled === FALSE)
admine334c472006-10-21 19:44:22 +000081 {
adminb0dd10f2006-08-25 17:25:49 +000082 return FALSE;
83 }
84
85 $level = strtoupper($level);
86
87 if ( ! isset($this->_levels[$level]) OR ($this->_levels[$level] > $this->_threshold))
88 {
89 return FALSE;
90 }
91
admin141808a2006-08-27 01:52:51 +000092 $filepath = $this->log_path.'log-'.date('Y-m-d').EXT;
adminb0dd10f2006-08-25 17:25:49 +000093 $message = '';
94
95 if ( ! file_exists($filepath))
96 {
97 $message .= "<"."?php if (!defined('BASEPATH')) exit('No direct script access allowed'); ?".">\n\n";
98 }
99
100 if ( ! $fp = @fopen($filepath, "a"))
101 {
102 return FALSE;
103 }
104
105 $message .= $level.' '.(($level == 'INFO') ? ' -' : '-').' '.date($this->_date_fmt). ' --> '.$msg."\n";
106
107 flock($fp, LOCK_EX);
108 fwrite($fp, $message);
109 flock($fp, LOCK_UN);
110 fclose($fp);
111
112 @chmod($filepath, 0666);
113 return TRUE;
114 }
admin10c3f412006-10-08 07:21:12 +0000115
adminb0dd10f2006-08-25 17:25:49 +0000116}
117// END Log Class
118?>