Kohana日志的问题

时间:2011-09-23 04:18:41

标签: kohana-3 logging

出于某种原因,我无法让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']);

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

最简单的方法是使用Kohana的内置记录器,因为它已经设置好了:

Kohana::$log->add(Log::ERROR, "your debug info")->write();

否则,如果您想使用自定义编写器,请确保为其分配编写器 - 它可以是文件,数据库等。