随笔 - 6  文章 - 129  trackbacks - 0
<2024年11月>
272829303112
3456789
10111213141516
17181920212223
24252627282930
1234567

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 821414
  • 排名 - 49

最新评论

阅读排行榜

评论排行榜

运行控制台打印:(只在控制台上,不在.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 阅读(964) 评论(0)  编辑  收藏 所属分类: eclipse RCPlog4j

只有注册用户登录后才能发表评论。


网站导航: