无法使用log_message在localhost / Git Bash上显示数据/日志

时间:2018-05-07 03:12:47

标签: php codeigniter localhost git-bash logfile

我使用Codeigniter并且我希望在我的localhost浏览器或Git Bash中显示我的日志以获取日志消息,我尝试但不起作用。

我在 config.php 中使用它:

$config['log_threshold'] = 1;

这是我的log_message

log_message('error',print_r($data, true));

我尝试运行$ tail -f application/logs但没有显示日志文件。

有什么或任何人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

日志保存在名称格式为log-Y-m-d.php的php文件中。所以试试这个

$ tail -f application/logs/log-2018-05-07.php

git bash结果

enter image description here