Zend框架记录错误和其他文件

时间:2011-08-21 00:42:17

标签: php zend-framework zend-log

我需要通过创建插件或添加application.ini来记录错误,访问尝试等,在错误中保持默认不向最终用户显示

提前感谢。

1 个答案:

答案 0 :(得分:4)

这正是为 Zend_Log 创建的。

http://framework.zend.com/manual/en/zend.log.html

$writer = new Zend_Log_Writer_Stream('/path/to/logfile');
$logger = new Zend_Log($writer);

$logger->info('Informational message');
$logger->warn('Warning message');