codeigniter日志记录功能不生成消息

时间:2018-04-11 04:47:12

标签: codeigniter error-handling

页面在codeigniter项目中显示此错误,但日志文件未生成错误

我第一次体验日志记录功能 所以我不知道如何生成错误

   A PHP Error was encountered
    Severity: Notice

    Message: Undefined variable: bottomstatus

    Filename: views/template.php

    Line Number: 65

    Backtrace:

    File: D:\xampp\htdocs\timehubzone\application\views\template.php
    Line: 65
    Function: _error_handler

codeigniter错误状态

$config['log_threshold'] = 1;
$config['log_path'] = '';
$config['log_file_extension'] = '';

1 个答案:

答案 0 :(得分:0)

为了记录通知 - 您必须提高阈值

而不是

$config['log_threshold'] = 1;

您只需将其更改为

即可
$config['log_threshold'] = 2;
  

请注意,这对生产环境并不有用 - 因为您的日志文件会变得很大。您可以在Codeigniter Documentation找到更多信息,并在这篇由Narf回答的SO帖子中找到:CodeIgniter 3 - configuring log_threshold