1

我想在我的 zend 应用程序中实现错误记录器。我创建了用于调试的记录器,但谁能告诉我记录错误的最佳方法是什么,以便它们在文件中更具可读性。

我见过 Sugarcrm 记录器,它以正确的格式记录错误。有没有人创建过这样的记录器。这样我就可以节省时间。提前致谢。

4

2 回答 2

1

嗯,有Zend_Log可以让 zend 的日志记录错误变得容易。这是我找到的一些教程。

于 2010-09-24T20:23:33.490 回答
1

Use the Log application resource (which loads Zend_Log). It's extremely easy to set up and configure from your application.ini file, and you can set different logging options for different environments.

If you don't like the way the text is formatted, you can use use Zend_Log_Formatter to customize the text format.

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

于 2010-09-25T16:41:40.050 回答