CI 日志类

开发ci的过程中,使用log能直观的看出代码运行到哪,还可设置代码查看数据接口的发送情况。日志类:

<?php defined('BASEPATH') OR exit('No direct script access allowed');
/**
 * Logging Class
 */
class MY_Log extends CI_Log {

    public function info()
    {
        $msg = preg_replace("#\r?\n#", '', implode('', func_get_args()));
        return $this->write_log('INFO', $msg, FALSE);
    }

    public function error()
    {
        $msg = preg_replace("#\r?\n#", '', implode('', func_get_args()));
        return $this->write_log('ERROR', $msg, FALSE);
    }

    public function debug()
    {
        $msg = preg_replace("#\r?\n#", '', implode('', func_get_args()));
        return $this->write_log('DEBUG', $msg, FALSE);
    }
}
// END MY_Log Class

/* End of file MY_Log.php */
/* Location: ./application/libraries/MY_Log.php */

使用方法:

1. 自动加载log类: $autoload['libraries'] = array('log', 'session', 'curl', 'memcache');

2.输出log类:可在log文件中查看

 $this->log->debug('[GBOMP] 用户[' . $user . ']使用密码[' . $pass . ']尝试登录结果为:[' . print_r($info, TRUE) . ']');

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值