Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running a headless Eclipse RCP Application without the osgi console

i want to create a headless Eclipse RCP Application that can be started from console. Currently i'm using this parameter in the .ini file:

-consoleLog

The problem is this opens an extra OSGI console which i don't want. Is there any way to supress the console and get the output in the original terminal?

like image 956
Absurd-Mind Avatar asked May 12 '11 12:05

Absurd-Mind


1 Answers

-consoleLog doesn't open an OSGi console, which shows up as osgi>. Only -console does that.

DO you mean it opens a second windows console (similar to cmd.exe) and you just want that to appear in your original cmd.exe window?

If that's the case, then you use eclipsec.exe -consoleLog -application <whatever> to launch.

like image 190
Paul Webster Avatar answered Sep 26 '22 05:09

Paul Webster