Absurd-Mind
Absurd-Mind

Reputation: 7994

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?

Upvotes: 5

Views: 2272

Answers (1)

Paul Webster
Paul Webster

Reputation: 10654

-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.

Upvotes: 5

Related Questions