出于某种原因,我无法让kohana记录我的自定义错误。这是代码:
$log = new Log;
$log->add(Log::ERROR, 'There was a conflic with the username and/or email. UUID: '.$user['uuid'].' username: '.$user['username'].' email: '.$user['email']);
提前感谢您的帮助。
答案 0 :(得分:2)
最简单的方法是使用Kohana的内置记录器,因为它已经设置好了:
Kohana::$log->add(Log::ERROR, "your debug info")->write();
否则,如果您想使用自定义编写器,请确保为其分配编写器 - 它可以是文件,数据库等。