码迷,mamicode.com
首页 > 系统相关 > 详细

如何使用.options文件来debug Eclipse的插件

时间:2015-01-07 11:06:12      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

1.首先你要在你的插件根目录下,创建一个.options的文件

里面的内容如下:

com.example.youcompany.ui/debug=false

就是你的plugin名字/debug,或者任何你自己定义的debug名字。

2.在你的code中使用如下代码来做debug的输出:

    private boolean isDebugEnabled() {
        if (debugEnabled == null) {
            debugEnabled = Boolean.valueOf(Platform.getDebugOption(pluginId + "/debug"));
        }
        return debugEnabled.booleanValue();
    }
    
    public logError(String errorMsg) {
        if(isDebugEnabled) {
            //process you log 
        }
    }



3.然后在debug configuration的tracing tab下,enable你的debug符号,

技术分享

4.Debug 就可以了。

如何使用.options文件来debug Eclipse的插件

标签:

原文地址:http://blog.csdn.net/lantianjialiang/article/details/42487111

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!