Hi,
I've a plugin which has to write output to the eclipse console. My sample code looks as follows:
MessageConsole myConsole = new MessageConsole("My Console", null);
myConsole.activate();
ConsolePlugin.getDefault().getConsoleManager().addConsoles(new IConsole[]{ myConsole });
ConsolePlugin.getDefault().getConsoleManager().showConsoleView(myConsole);
MessageConsoleStream stream = myConsole.newMessageStream();
stream.println("Hi there!");
stream.close();
I found this partly here
and in the eclipse faqs. But this code doesn't work properly. Starting the plugin in a runtime workbench everything works as expected - console is opened and output visible. But when I install my plugin to eclipse then there is no console and no output inside eclipse. Strange is also, that when starting eclipse with -debug, some of the output written to a console is visible there. I say some, because the code abouve doesn't appear there, but some other similar code in some other place inside the plugin... redirecting stdout and stderr into a file gives the same result.
I would be gread if someone could give me a hint - I searched up and down the internet but couldn't find anything helpful as far.
regards, Kathi
