You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading to Magento 2.2.4 the errors started appearing on product page with options:
PHP Fatal error: Maximum function nesting level of '200' reached.
The trace reveals one of the calls is in Jh\BlockLogger\Layout\Logger->aroundRenderNonCachedElement()
After removing the module the product page starts working
The text was updated successfully, but these errors were encountered:
Is this still an issue? Do you have a full stack trace? 200 seems like a reasonably plausible depth for recursive layout processing.
After some looking around, it seems that PHP does not enforce a limit on function nesting, and recursion by default will generate a segmentation fault. This limit seems to come from XDebug, so perhaps you can raise that setting?
After upgrading to Magento 2.2.4 the errors started appearing on product page with options:
PHP Fatal error: Maximum function nesting level of '200' reached.
The trace reveals one of the calls is in
Jh\BlockLogger\Layout\Logger->aroundRenderNonCachedElement()
After removing the module the product page starts working
The text was updated successfully, but these errors were encountered: