Version: 2.7.3
On PHP 7.4 is new INI directive zend.exception_ignore_args. When set to On (default value), no arguments are returned from method Exception::getTrace().
Possible solution is disabling this feature using ini_set function after line
|
ini_set('log_errors', '0'); |
Version: 2.7.3
On PHP 7.4 is new INI directive
zend.exception_ignore_args. When set to On (default value), no arguments are returned from methodException::getTrace().Possible solution is disabling this feature using
ini_setfunction after linetracy/src/Tracy/Debugger/Debugger.php
Line 184 in 1c8d257