Using PHPStorm 6/7 (or WebStorm I guess), is it possible to configure a debug session so that it understands and uses piping to have a more convenient display in the PHPStorm console? I'm working on a nodejs app that utilizes bunyan. I'd like for PHPStorm to be able to pretty print the debug output as it would if I launched the app from the terminal.
Here's an example config:
But the command it's trying to run is:
/usr/local/bin/node --debug-brk=57073 app.js -vv 2>&1 "|" bunyan
If it wouldn't quote the pipe symbol, it might work, but I'm not sure.