views:

190

answers:

2

I'm using Eclipse 3.4.1, moving my first steps. When I run my project (a server process) a console opens. But for some reasons after a while I can't find it anymore (even if the process is still up). I'd like to find it to be able to see its output and/or kill it. Is there a place in Eclipse where I can find all running sub-processes?

+1  A: 

There is a small button that looks like a monitor in the console panel. It lists all open consoles. I'm ashamed I didn't find it myself before posting the question, but maybe it will be useful to someone.

silviot
Just add a more complete answer for you to select ;)
VonC
A: 

If you are talking about "eclipse console", there is only one "console view", but several console instances.

You can browse the different consoles by clicking on the second button from the left in the console view (the one looking like a monitor)

Your console may 'disappear' because another message is displayed in the main console (stdout) process, while your server still runs with the other console instance.

VonC