我的/etc/hhvm/php.ini
目前看起来像这样:
display_startup_errors = On
error_reporting = E_ALL
display_errors = On
hhvm.error_handling.call_user_handler_on_fatals = 1
hhvm.server.implicit_flush = 1
前3个指令导致sudo service hhvm restart
失败。如果我删除这3个指令,它会重新启动。当服务无法重新启动时,我看不到/var/log/hhvm/error.log
内部失败的任何原因。
我在查看正确的日志文件吗? php.ini配置应该不在这个文件中吗?
我添加这些ini指令的原因是在我的php应用程序中看到致命错误输出。您提供的任何建议都会非常有用。
$ hhvm --version
HipHop VM 3.6.5 (rel)
Compiler: tags/HHVM-3.6.5-0-g20a30678cd67fad96602ffd93e69780d001ce57f
Repo schema: 53a4026d3732c3584cffef19fa47fea655be3c4f
答案 0 :(得分:2)
On
和E_ALL
。这有效:
display_startup_errors = 1
error_reporting = 8191
display_errors = 1