我有一个ZF 3应用程序。我明确登录的消息,例如$log->debug()
显示就好了。例外情况并非如此。错误似乎出现了,因为这是默认的php配置转到stderr。以下是来自modules.config.php的相关行:
'service_manager' => [
'factories' => [
. . . .
'log' => \Zend\Log\LoggerServiceFactory::class,
],
],
'log' => [
'writers' => [
[
'name' => 'stream',
'options' => [ 'stream' => 'php://stderr' ]
],
],
'errorHandler' => true,
'exceptionhandler' => true,
],
The lines in the source that lead me to believe this is the correct config
if (isset($options['exceptionhandler']) && $options['exceptionhandler'] === true) {
static::registerExceptionHandler($this);
}
if (isset($options['errorhandler']) && $options['errorhandler'] === true) {
static::registerErrorHandler($this);
}
为了测试它,我做了以下的终点:
public function errorAction()
{
$msg = $this->params()->fromQuery('msg', 'Default Error message');
trigger_error('Index Error Action' . $msg, E_USER_ERROR);
$model = new JsonErrorModel(['msg' => $msg]);
return $model;
}
public function exceptionAction()
{
$msg = $this->params()->fromQuery('msg', 'Default Error message');
throw new \RuntimeException('Index Exception Action' . $msg);
$model = new JsonErrorModel(['msg' => $msg]);
return $model;
}
答案 0 :(得分:1)
您的配置数组中有拼写错误
'log' => [
....
'errorHandler' => true,
....
],
这个索引不应该是camelCase它应该是errorhandler
(所有字母都是小写的)。我还要将fatal_error_shutdownfunction => true
添加到配置中,以便记录致命错误。
Zend使用set_exception_handler
来处理异常,因此请记住,只有当日志异常不在try / catch块中时才会起作用。
如果未在try / catch块中捕获异常,则设置默认异常处理程序
资料来源:http://php.net/manual/en/function.set-exception-handler.php
可以手动设置所有这些功能:
\Zend\Log\Logger::registerErrorHandler($logger);
\Zend\Log\Logger::registerFatalErrorShutdownFunction($logger);
\Zend\Log\Logger::registerExceptionHandler($logger);
如果你想测试它,你可以做以下事情:
错误
public function errorAction()
{
$log = $this->getServiceLocator()->get('log'); // init logger. You shouldn't use getServiceLocator() in controller. Recommended way is injecting through factory
array_merge([], 111);
}
它应该写在日志中:
2017-03-09T15:33:47+01:00 WARN (4): array_merge(): Argument #2 is not an array {"errno":2,"file":"[...]\\module\\Application\\src\\Application\\Controller\\IndexController.php","line":80}
致命错误
public function fatalErrorAction()
{
$log = $this->getServiceLocator()->get('log'); // init logger. You shouldn't use getServiceLocator() in controller. Recommended way is injecting through factory
$class = new ClassWhichDoesNotExist();
}
记录:
2017-03-09T15:43:06+01:00 ERR (3): Class 'Application\Controller\ClassWhichDoesNotExist' not found {"file":"[...]\\module\\Application\\src\\Application\\Controller\\IndexController.php","line":85}
如果您需要全局记录器,或者您可以在Module.php
文件中初始化记录器。
我认为不可能在控制器的操作中记录异常。我不确定,但是在try / catch块中调度了动作。