我在 app.php 中将$debug
设置为true
,但没有任何变化。
如何在CakePHP中启用调试模式?
答案 0 :(得分:0)
根据cookbook,您可以通过更改" debug"的值来启用或禁用调试模式。 config / app.php文件中的参数。
/**
* Debug Level:
*
* Production Mode:
* false: No error messages, errors, or warnings shown.
*
* Development Mode:
* true: Errors and warnings shown.
*/
'debug' => filter_var(env('DEBUG', true), FILTER_VALIDATE_BOOLEAN),
在您的控制器中,您可以使用log() method进行记录(对所有对象都可用):
$this->log('debug message','debug');