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
There is an usefull xdebug setting — xdebug.file_link_format
This setting determines the format of the links that are made in the display of stack traces where file names are used. This allows IDEs to set up a link-protocol that makes it possible to go directly to a line and file by clicking on the filenames that Xdebug shows in stack traces.
For example, in my case xdebug.file_link_format = "phpstorm:%f@%l"
It generates direct links to my IDE project-file-line in xdebug warnings/exceptions (in the message body and in the backtrace) with my own URL protocol.
Like this phpstorm:D:\server\some-project\index.php@44
But Phalcon\Debug don't use this feature, simply shows the path to the error, which makes it unusable.
The text was updated successfully, but these errors were encountered:
There is an usefull xdebug setting — xdebug.file_link_format
For example, in my case
xdebug.file_link_format = "phpstorm:%f@%l"
It generates direct links to my IDE project-file-line in xdebug warnings/exceptions (in the message body and in the backtrace) with my own URL protocol.
Like this
phpstorm:D:\server\some-project\index.php@44
But Phalcon\Debug don't use this feature, simply shows the path to the error, which makes it unusable.
The text was updated successfully, but these errors were encountered: