예제 #1
0
  /*
   * (non-Javadoc)
   * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
   */
  public void start(BundleContext context) throws Exception {
    super.start(context);
    plugin = this;

    // log level설정
    //				LogConfiguration.getInstance();

    // eclipse 로그도 log4j에 넣어주도록 수정 ... (해야할지 살짝 의문이고 삭제해야할지도....) -hangum, 11.09
    listener = new LogListener();
    Platform.addLogListener(listener);
  }
예제 #2
0
  /*
   * (non-Javadoc)
   * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
   */
  public void start(BundleContext context) throws Exception {
    super.start(context);
    plugin = this;

    // log level설정
    LogConfiguration.getInstance();

    // eclipse 로그 설정
    listener = new LogListener();
    Platform.addLogListener(listener);

    // tadpole system 이 시작시 해야하는 부분 설정.
    TadpoleSystem.startInit();
  }