我有一个RCP
应用程序,我在其中添加了一些System.out.println()
语句。现在,我已将项目导出为产品,有人可以告诉我在哪里查找这些System.out.println()
输出吗?
答案 0 :(得分:1)
由于您没有使用记录器框架,因此输出不会打印到默认的workspace/.metadata/.log
文件中。
您可以使用控制台启动产品,将以下参数添加到安装目录中的ProductName.ini
(例如Eclipse.ini)文件中:
-console
-consoleLog
ini文件应如下所示:
-startup
plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.300.v20150602-1417
-console
-consoleLog
输出将打印在控制台窗口中。
EDIT
如果您在启动应用程序后收到错误消息:
could not find bundle: org.eclipse.equinox.console
您需要将以下捆绑包添加到ProductName.product
文件(“内容”标签)并导出新产品:
org.eclipse.equinox.console
org.apache.felix.gogo.runtime
org.apache.felix.gogo.command
org.apache.felix.gogo.shell