I'm launching my tests with maven through powershell piping output to .log file with Out-File .\outfile.log command like this: mvn clean verify | Out-File .\outfile.log
When I'm tailing the outfile.log with GrepConsole, I can't see any messages in the console, I can only see the blinking cursor and the scrollbar moving.
Tailing the .log file created by the program works without issues so this is clearly an issue with Out-File and powershell integration.
I've tried adding shell integration in GrepConsole options but it didn't help.
I'm launching my tests with maven through powershell piping output to .log file with
Out-File .\outfile.log
command like this:mvn clean verify | Out-File .\outfile.log
When I'm tailing the outfile.log with GrepConsole, I can't see any messages in the console, I can only see the blinking cursor and the scrollbar moving.Tailing the .log file created by the program works without issues so this is clearly an issue with Out-File and powershell integration. I've tried adding shell integration in GrepConsole options but it didn't help.