Go to Menu > File > Open Template > PHP (php.ini) > VERSION.
The php.ini file will open.
If a dialog box appears, read it and click OK.
Use the search function (Command + F) to find xdebug.mode=.
The line may look something like this: xdebug.mode=develop,coverage,debug,gcstats,profile,trace. This lists several Xdebug modes in sequence.
Remove certain Xdebug modes to increase processing speed. For example, excluding trace can make a significant difference in execution speed. After removal, the line will look like this: xdebug.mode=develop,coverage,debug,gcstats,profile.