Console on Windows, again
Hello, i just find that if you use follow settings:
Console is hidded, but you can make it visible (for debug purposes for example), if you will hold down Ctrl key while IDEA starting.
Thanks, hope this usefull :)
Please sign in to leave a comment.
This sounds like a great idea, but I tried it with build 1002 and it does not work :(
I've tried modifying "idea.lax" file and it works ok. I've just commented original settings and introduced new.
LAX.STDERR.REDIRECT
...
lax.stderr.redirect=console
lax.stderr.redirect=
LAX.STDIN.REDIRECT
...
#lax.stdin.redirect=console
lax.stdin.redirect=
LAX.STDOUT.REDIRECT
....
#lax.stdout.redirect=console
lax.stdout.redirect=
Regards.
Andrey
or u can just add a file name to the right of equal sign like:
lax.stderr.redirect=log.txt
after that, if u prefer to see what's wrong, u can browse the log.txt in the same dir of idea.lax
It not help you, if you need Thread Dump. For geting thread dump, you must hit Ctrl+Break in console window.
Thanks!