Is there any way to see echo or print calls in xdebug trace output. I am looking for a global configuration (or a way to do this) for all the scripts that I run on my server.
Example:
<?php echo "xdebug show me"; ?>
I want the trace output to display an echo call. By default, it is not displayed. I tried to disable the output buffer (which may not be relevant), but it does not work. Any suggestions?
source share