-
-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not able to see all elements (level 1) of an array #166
Comments
See xdebugSettings in the readme. This is entirely controlled through XDebug configuration. |
Thanks, it works. But maybe we can increase the default sent to xdebug ? Like the default value in display "xdebugSettings": {
"max_children": 128,
"max_data": 512,
"max_depth": 3
} |
The default value is determined by XDebug. On slow machines a higher max_children causes a lot of lag, which is why I don't want to change it. |
Where do I have to add the xdebugSettings exactly? |
Hi. In
Please see the main README for details. |
Thanks for the workaround! But I wonder, maybe xdebug can dynamically re-request the info about inner variable, when expanding the tree, to go deeper than |
Hi! The other setting |
PHP version: 7.1.5
XDebug version: v2.5.1
Adapter version: 0.2.0
Your launch.json:
XDebug php.ini config:
XDebug logfile (from setting
xdebug.remote_log
in php.ini): NoneAdapter logfile (from setting
"log": true
in launch.json): NoneCode snippet to reproduce: No idea
When I break into some code, vscode tells me a var
$order
is an array containing 58 elements, but I don't see them all:The text was updated successfully, but these errors were encountered: