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
When zl_mode is set to prod with default configs (debugLog=false and debugLogOnFault=false), the debugger will call $temp = ztime::reportPerf(memory_get_usage() - $zl_debugMem);, which will return null, and then attempt to access $temp['report'] and $temp['time']
This causes two warnings to trigger on every page load:
Warning: Trying to access array offset on null in zerolith/classes/zl.php on line 676
Warning: Trying to access array offset on null in zerolith/classes/zl.php on line 677
Only userland "fix" currently is to change zl_mode to something other than prod.
The text was updated successfully, but these errors were encountered:
When zl_mode is set to
prod
with default configs (debugLog=false
anddebugLogOnFault=false
), the debugger will call$temp = ztime::reportPerf(memory_get_usage() - $zl_debugMem);
, which will return null, and then attempt to access$temp['report']
and$temp['time']
This causes two warnings to trigger on every page load:
Warning: Trying to access array offset on null in zerolith/classes/zl.php on line 676
Warning: Trying to access array offset on null in zerolith/classes/zl.php on line 677
Only userland "fix" currently is to change
zl_mode
to something other than prod.The text was updated successfully, but these errors were encountered: