2012-04-02 72 views

回答

15

log_message()功能是通用系統功能。它使用Log::write_log()方法記錄錯誤。它不擅長破解核心文件。所以你可以擴展日誌庫並覆蓋write_log()函數。

如果你還沒有擴展你的Log類。創建文件application/libraries/MY_Log.php

class MY_Log extends CI_Log { 

    function MY_Log() 
    { 
     parent::__construct(); 

     $this->ci =& get_instance(); 
    } 

    public function write_log() { //here overriding 
     if ($this->_enabled === FALSE) 
     { 
     return FALSE; 
     } 

     $level = strtoupper($level); 

     if (! isset($this->_levels[$level]) OR 
     ($this->_levels[$level] > $this->_threshold)) 
     { 
     return FALSE; 
     } 

     /* HERE YOUR LOG FILENAME YOU CAN CHANGE ITS NAME */ 
     $filepath = $this->_log_path.'log-'.date('Y-m-d').EXT; 
     $message = ''; 

     if (! file_exists($filepath)) 
     { 
     $message .= "<"."?php if (! defined('BASEPATH')) 
     exit('No direct script access allowed'); ?".">\n\n"; 
     } 

     if (! $fp = @fopen($filepath, FOPEN_WRITE_CREATE)) 
     { 
     return FALSE; 
     } 

     $message .= $level.' '.(($level == 'INFO') ? ' -' : '-').' '; 
     $message .= date($this->_date_fmt). ' --> '.$msg."\n"; 

     flock($fp, LOCK_EX); 
     fwrite($fp, $message); 
     flock($fp, LOCK_UN); 
     fclose($fp); 

     @chmod($filepath, FILE_WRITE_MODE); 
     return TRUE; 
    } 
} 

log_message()功能將作爲您的願望

+0

很好。感謝你! – 2012-04-02 06:09:51

+1

獲取:致命錯誤:Class'CI_Controller'找不到D:\ projektai \ roachrun \ system \ core \ CodeIgniter.php在線233 – 2014-02-17 09:50:47

+0

這是否仍然有效?我有字面上複製粘貼這個,只改變文件路徑,但日誌仍然使用默認文件名。也嘗試在開始時添加<?php,但這不會。 – 2017-08-19 01:21:07

0

隨着CI 2.1.3使工作使用此代碼。在庫文件夾中創建MY_Log.php。不是確切的什麼需要的OP,但每個人都會明白如何modyfy :)

<?php 
/** 
* CodeIgniter 
* 
* An open source application development framework for PHP 4.3.2 or newer 
* 
* @package  CodeIgniter 
* @author  ExpressionEngine Dev Team 
* @copyright Copyright (c) 2006, EllisLab, Inc. 
* @license  http://codeigniter.com/user_guide/license.html 
* @link  http://codeigniter.com 
* @since  Version 1.0 
* @filesource 
*/ 
// ------------------------------------------------------------------------ 
/** 
* MY_Logging Class 
* 
* This library assumes that you have a config item called 
* $config['show_in_log'] = array(); 
* you can then create any error level you would like, using the following format 
* $config['show_in_log']= array('DEBUG','ERROR','INFO','SPECIAL','MY_ERROR_GROUP','ETC_GROUP'); 
* Setting the array to empty will log all error messages. 
* Deleting this config item entirely will default to the standard 
* error loggin threshold config item. 
* 
* @package  CodeIgniter 
* @subpackage Libraries 
* @category Logging 
* @author  ExpressionEngine Dev Team. Mod by Chris Newton 
*/ 
class MY_Log extends CI_Log { 
    /** 
    * Constructor 
    */ 
    public function __construct() 
    { 
     $config =& get_config(); 

     $this->_log_path = ($config['log_path'] != '') ? $config['log_path'] : APPPATH.'logs/'; 

     if (! is_dir($this->_log_path) OR ! is_really_writable($this->_log_path)) 
     { 
      $this->_enabled = FALSE; 
     } 

     if (is_numeric($config['log_threshold'])) 
     { 
      $this->_threshold = $config['log_threshold']; 
     } 

     if ($config['log_date_format'] != '') 
     { 
      $this->_date_fmt = $config['log_date_format']; 
     } 
    } 

    private function isCommandLineInterface() 
    { 
     return (php_sapi_name() === 'cli'); 
    } 

    // -------------------------------------------------------------------- 
    /** 
    * Write Log File 
    * 
    * Generally this function will be called using the global log_message() function 
    * 
    * @access public 
    * @param string the error level 
    * @param string the error message 
    * @param bool whether the error is a native PHP error 
    * @return bool 
    */   
    public function write_log($level = 'error', $msg, $php_error = FALSE) 
    { 


     if ($this->_enabled === FALSE) 
     { 
      return FALSE; 
     } 

     $level = strtoupper($level); 

     if (! isset($this->_levels[$level]) OR ($this->_levels[$level] > $this->_threshold)) 
     { 
      return FALSE; 
     } 

     $filepath = $this->_log_path.'log-'.date('Y-m-d').'.php'; 
     $message = ''; 

     if (! file_exists($filepath)) 
     { 
      $message .= "<"."?php if (! defined('BASEPATH')) exit('No direct script access allowed'); ?".">\n\n"; 
     } 

     if (! $fp = @fopen($filepath, FOPEN_WRITE_CREATE)) 
     { 
      return FALSE; 
     } 

     if ($this->isCommandLineInterface()) { 
      $message .= 'CMD '; 
     } 

     $message .= $level.' '.(($level == 'INFO') ? ' -' : '-').' '.date($this->_date_fmt). ' --> '.$msg."\n"; 

     flock($fp, LOCK_EX); 
     fwrite($fp, $message); 
     flock($fp, LOCK_UN); 
     fclose($fp); 

     @chmod($filepath, FILE_WRITE_MODE); 
     return TRUE; 
    } 

} 
+1

我想知道爲什麼有一個PHP的擴展而不是日誌? '.log'not'.php' – 2017-01-15 09:27:13

+0

不知道,可能CI開發者由於某種原因決定如此。 – 2017-01-15 10:01:11

+1

對我來說似乎是一個潛在的後門,我將它改回日誌。 – 2017-02-08 11:57:56