问题描述
TP6中输出一条日志
1
2
3
use thinkacadeLog;
Log.debug("这是一条日志")
明明config/log.php 里配置的默认输出就是 file,其他代码使用也正常
在异常处理文件app/ExceptionHandle.php 中使用,想将错误信息输出到文件,方便调试找bug
1
Log::error($e);
直接输出到了输出流,返回给了前端
1
{code: -1, msg: 错误, data: null}{}
导致json解析失败
问题解决
1
2
3
4
Log::error($e->getTraceAsString());
// 或者指定输出通道
Log::channel(file)->error(一条测试日志);
以上就是ThinkPHP6.0日志没有输出到文件怎么解决的详细内容,更多请关注php中文网其它相关文章!