运行控制台打印:(只在控制台上,不在.log文件中)
log4j:WARN No appenders could be found for logger (myrcp.OpenViewAction).
log4j:WARN Please initialize the log4j system properly.
这是因为没有添加Log4j的配置信息。
在启动RCP的插件中的start方法里:
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
Properties prop = new Properties();
try {
prop.load(Activator.class.getResourceAsStream("log4j.properties")); //$NON-NLS-1$
} catch (IOException e) {
// e.printStackTrace();
}
PropertyConfigurator.configure(prop);
}
在myrcp.Activator同级目录下添加log4j.properties:
posted on 2012-04-28 17:56
Ke 阅读(965)
评论(0) 编辑 收藏 所属分类:
eclipse RCP 、
log4j