我正在尝试让我的日志编写器工作,但是,我没有那么远。
当我抛出异常时:
<?php
class IndexController extends Zend_Controller_Action
{
public function indexAction()
{
throw new Exception('something bad happened!');
}
}
它没有被我的错误控制器捕获。
用env开发检查我的版本是1.11.4。我不确定这里有什么问题,任何帮助表示赞赏。我觉得很奇怪。
( ! ) Exception: something bad happened! in C:\sites\mysite\application\controllers\IndexController.php on line 7
Call Stack
# Time Memory Function Location
1 0.0004 350304 {main}( ) ..\index.php:0
2 0.0705 5273208 Zend_Application->run( ) ..\index.php:31
3 0.0705 5273208 Zend_Application_Bootstrap_Bootstrap->run( ) ..\Application.php:366
4 0.0705 5273384 Zend_Controller_Front->dispatch( ) ..\Bootstrap.php:97
答案 0 :(得分:2)
我认为您的application.ini中的开发环境throwExceptions
设置为1
;)