org.miloss.fgsms.common.Logger.error()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(5.6k)|赞(0)|评价(0)|浏览(87)

本文整理了Java中org.miloss.fgsms.common.Logger.error()方法的一些代码示例,展示了Logger.error()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Logger.error()方法的具体详情如下:
包路径:org.miloss.fgsms.common.Logger
类名称:Logger
方法名:error

Logger.error介绍

暂无

代码示例

代码示例来源:origin: org.mil-oss/fgsms-reporting-service

protected String getHeader() {
  String x = null;
  InputStream s = null;
  try {
    s = this.getClass().getClassLoader().getResourceAsStream("org/miloss/fgsms/services/rs/impl/header.txt");
    x = readAllText(s);
  } catch (Exception ex) {
    log.error(null, ex);
  } finally {
    if (s != null) {
      try {
        s.close();
      } catch (IOException ex) {
      }
    }
  }
  return x;
}

代码示例来源:origin: org.mil-oss/fgsms-reporting-service

protected String getFooter() {
  String x = null;
  InputStream s = null;
  try {
    s = this.getClass().getClassLoader().getResourceAsStream("org/miloss/fgsms/services/rs/impl/footer.txt");
    x = readAllText(s);
  } catch (Exception ex) {
    log.error(null, ex);
  } finally {
    if (s != null) {
      try {
        s.close();
      } catch (IOException ex) {
      }
    }
  }
  return x;
}

代码示例来源:origin: org.mil-oss/fgsms-sla-processor

log.error("SLA Processing failed for " + req.getURI(), ex);
} finally {
  if (is!=null)

代码示例来源:origin: org.mil-oss/fgsms-stats

log.error("error fetching actions for service", ex);
} finally {
  DBUtils.safeClose(results);
  log.error("error fetching transactions", ex);
} finally {
  DBUtils.safeClose(records);
    up.executeUpdate();
  } catch (Exception ex) {
    log.error("error updating statistcs row", ex);
  } finally {
    DBUtils.safeClose(up);

代码示例来源:origin: org.mil-oss/fgsms-sla-processor

log.error("Error to Load class for SLA Alert!!!" + alert.getSlaActionBaseType().getImplementingClassName());
} else {
  try {
    item.ProcessAction(alert, alert.getSlaActionBaseType().getParameterNameValue());
  } catch (Exception ex) {
    log.error("Error unable to process SLA Alert!!!", ex);

代码示例来源:origin: org.mil-oss/fgsms-ui-common

LogHelper.getLog().error(ex);

代码示例来源:origin: org.mil-oss/fgsms-ui-common

public static List<Plugin> GetPluginList(PCS pcs, SecurityWrapper c, String item_type, PolicyType pt) {
  if (item_type == null) {
     return Collections.EMPTY_LIST;
  }
  GetPluginListRequestMsg req = new GetPluginListRequestMsg();
  req.setClassification(c);
  req.setPlugintype(item_type);
  req.setOptionalPolicyTypeFilter(pt);
  GetPluginList r = new GetPluginList();
  r.setRequest(req);
  try {
     GetPluginListResponse pluginList = pcs.getPluginList(r);
     return pluginList.getResponse().getPlugins();
  } catch (Exception ex) {
     LogHelper.getLog().error(ex);
  }
  return Collections.EMPTY_LIST;
}

代码示例来源:origin: org.mil-oss/fgsms-ui-common

/**
*
* @param action
* @param pcs
* @param c
* @param item_type FEDERATION_PUBLISH,SLA_RULE,SLA_ACTION
* @return
*/
public static String GetPluginHelp(SLAAction action, PCS pcs, SecurityWrapper c, String item_type) {
  if (action == null) {
     return "Null Action";
  }
  GetPluginInformationRequestMsg req = new GetPluginInformationRequestMsg();
  req.setGetPluginInformationRequestWrapper(new GetPluginInformationRequestWrapper());
  req.getGetPluginInformationRequestWrapper().setClassification(c);
  req.getGetPluginInformationRequestWrapper().setPlugin(new Plugin());
  req.getGetPluginInformationRequestWrapper().getPlugin().setClassname(action.getImplementingClassName());
  req.getGetPluginInformationRequestWrapper().getPlugin().setPlugintype(item_type);
  GetPluginInformation r = new GetPluginInformation();
  r.setRequest(req);
  try {
     GetPluginInformationResponse pluginInformation = pcs.getPluginInformation(r);
     return pluginInformation.getResponse().getHelp();
  } catch (Exception ex) {
     LogHelper.getLog().error(ex);
  }
  return "No help information could be found.";
}

代码示例来源:origin: org.mil-oss/fgsms-ui-common

/**
* report type to a friendly name for report types
*
* @param r
* @return
*/
public static String ToFriendlyName(String action, PCS pcs, SecurityWrapper c) {
  if (action == null) {
     return "Null classname";
  }
  GetPluginInformationRequestMsg req = new GetPluginInformationRequestMsg();
  req.setGetPluginInformationRequestWrapper(new GetPluginInformationRequestWrapper());
  req.getGetPluginInformationRequestWrapper().setClassification(c);
  req.getGetPluginInformationRequestWrapper().setPlugin(new Plugin());
  req.getGetPluginInformationRequestWrapper().getPlugin().setClassname(action);
  req.getGetPluginInformationRequestWrapper().getPlugin().setPlugintype("REPORTING");
  GetPluginInformation r = new GetPluginInformation();
  r.setRequest(req);
  try {
     GetPluginInformationResponse pluginInformation = pcs.getPluginInformation(r);
     return Utility.encodeHTML(pluginInformation.getResponse().getDisplayName());
  } catch (Exception ex) {
     LogHelper.getLog().error(ex);
  }
  return "Unrecognized report type " + Utility.encodeHTML(action);
}

代码示例来源:origin: org.mil-oss/fgsms-ui-common

/**
*
* @param action
* @param pcs
* @param c
* @param item_type FEDERATION_PUBLISH,SLA_RULE,SLA_ACTION
* @return html escaped friendly name of the plugin
*/
public static String ToFriendlyName(SLAAction action, PCS pcs, SecurityWrapper c) {
  if (action == null) {
     return "Null Action";
  }
  GetPluginInformationRequestMsg req = new GetPluginInformationRequestMsg();
  req.setGetPluginInformationRequestWrapper(new GetPluginInformationRequestWrapper());
  req.getGetPluginInformationRequestWrapper().setClassification(c);
  req.getGetPluginInformationRequestWrapper().setPlugin(new Plugin());
  req.getGetPluginInformationRequestWrapper().getPlugin().setClassname(action.getImplementingClassName());
  req.getGetPluginInformationRequestWrapper().getPlugin().setPlugintype("SLA_ACTION");
  GetPluginInformation r = new GetPluginInformation();
  r.setRequest(req);
  try {
     GetPluginInformationResponse pluginInformation = pcs.getPluginInformation(r);
     return Utility.encodeHTML(pluginInformation.getResponse().getDisplayName());
  } catch (Exception ex) {
     LogHelper.getLog().error(ex);
  }
  return "Unrecognized action, " + Utility.encodeHTML(action.getImplementingClassName());
}

相关文章

微信公众号

最新文章

更多