com.alipay.sofa.rpc.log.Logger.error()方法的使用及代码示例

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

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

Logger.error介绍

[英]Error.
[中]错误

代码示例

代码示例来源:origin: alipay/sofa-rpc

  1. @Override
  2. public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
  3. LOGGER.error("Client channel handler get exception!", cause);
  4. }
  5. }

代码示例来源:origin: alipay/sofa-rpc

  1. @Override
  2. public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
  3. LOGGER.error("Client channel handler get exception!", cause);
  4. }
  5. }

代码示例来源:origin: alipay/sofa-rpc

  1. @Override
  2. public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
  3. LOGGER.error("", cause);
  4. ctx.close();
  5. }
  6. }

代码示例来源:origin: alipay/sofa-rpc

  1. @Override
  2. public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
  3. LOGGER.error("", cause);
  4. ctx.close();
  5. }
  6. }

代码示例来源:origin: alipay/sofa-rpc

  1. private void closePathChildrenCache(Map<String, PathChildrenCache> map) {
  2. for (Map.Entry<String, PathChildrenCache> entry : map.entrySet()) {
  3. try {
  4. entry.getValue().close();
  5. } catch (Exception e) {
  6. LOGGER.error("Close PathChildrenCache error!", e);
  7. }
  8. }
  9. }

代码示例来源:origin: alipay/sofa-rpc

  1. @Override
  2. public void filter(ContainerRequestContext requestContext) throws IOException {
  3. try {
  4. RestTracerAdapter.serverFilter(requestContext);
  5. } catch (Exception e) {
  6. logger.error("the process of rest tracer server request occur error ", e);
  7. }
  8. }
  9. }

代码示例来源:origin: alipay/sofa-rpc

  1. @Override
  2. public void filter(ContainerRequestContext requestContext) throws IOException {
  3. try {
  4. RestTracerAdapter.serverFilter(requestContext);
  5. } catch (Exception e) {
  6. logger.error("the process of rest tracer server request occur error ", e);
  7. }
  8. }
  9. }

代码示例来源:origin: alipay/sofa-rpc

  1. private void closePathChildrenCache(Map<String, PathChildrenCache> map) {
  2. for (Map.Entry<String, PathChildrenCache> entry : map.entrySet()) {
  3. try {
  4. entry.getValue().close();
  5. } catch (Exception e) {
  6. LOGGER.error("Close PathChildrenCache error!", e);
  7. }
  8. }
  9. }

代码示例来源:origin: alipay/sofa-rpc

  1. private void loadSuccess(String alias, ExtensionClass<T> extensionClass) {
  2. if (listener != null) {
  3. try {
  4. listener.onLoad(extensionClass); // 加载完毕,通知监听器
  5. all.put(alias, extensionClass);
  6. } catch (Exception e) {
  7. LOGGER.error("Error when load extension of extensible " + interfaceClass + " with alias: "
  8. + alias + ".", e);
  9. }
  10. } else {
  11. all.put(alias, extensionClass);
  12. }
  13. }

代码示例来源:origin: alipay/sofa-rpc

  1. private void loadSuccess(String alias, ExtensionClass<T> extensionClass) {
  2. if (listener != null) {
  3. try {
  4. listener.onLoad(extensionClass); // 加载完毕,通知监听器
  5. all.put(alias, extensionClass);
  6. } catch (Exception e) {
  7. LOGGER.error("Error when load extension of extensible " + interfaceClass + " with alias: "
  8. + alias + ".", e);
  9. }
  10. } else {
  11. all.put(alias, extensionClass);
  12. }
  13. }

代码示例来源:origin: alipay/sofa-rpc

  1. private void statisticReport(SofaTracerSpan span) {
  2. statReporter.reportStat(span);
  3. Field statDatas;
  4. Map<StatKey, StatValues> datas = null;
  5. try {
  6. statDatas = getDeclaredField(statReporter, "statDatas");
  7. statDatas.setAccessible(true);
  8. datas = (Map<StatKey, StatValues>) statDatas.get(statReporter);
  9. } catch (IllegalAccessException e) {
  10. LOGGER.error("statisticReport error", e);
  11. }
  12. storeDatas.putAll(datas);
  13. }

代码示例来源:origin: alipay/sofa-rpc

  1. @Override
  2. public void run() {
  3. // 状态变化通知监听器
  4. for (ConsumerStateListener listener : onprepear) {
  5. try {
  6. listener.onAvailable(consumerBootstrap.getProxyIns());
  7. } catch (Exception e) {
  8. LOGGER.error("Failed to notify consumer state listener when state change to available");
  9. }
  10. }
  11. }
  12. });

代码示例来源:origin: alipay/sofa-rpc

  1. @Override
  2. public void run() {
  3. // 状态变化通知监听器
  4. for (ConsumerStateListener listener : onprepear) {
  5. try {
  6. listener.onUnavailable(consumerBootstrap.getProxyIns());
  7. } catch (Exception e) {
  8. LOGGER.error("Failed to notify consumer state listener when state change to unavailable");
  9. }
  10. }
  11. }
  12. });

代码示例来源:origin: alipay/sofa-rpc

  1. @Override
  2. public void run() {
  3. // 状态变化通知监听器
  4. for (ConsumerStateListener listener : onprepear) {
  5. try {
  6. listener.onUnavailable(consumerBootstrap.getProxyIns());
  7. } catch (Exception e) {
  8. LOGGER.error("Failed to notify consumer state listener when state change to unavailable");
  9. }
  10. }
  11. }
  12. });

代码示例来源:origin: alipay/sofa-rpc

  1. @Override
  2. public void run() {
  3. // 状态变化通知监听器
  4. for (ConsumerStateListener listener : onprepear) {
  5. try {
  6. listener.onAvailable(consumerBootstrap.getProxyIns());
  7. } catch (Exception e) {
  8. LOGGER.error("Failed to notify consumer state listener when state change to available");
  9. }
  10. }
  11. }
  12. });

代码示例来源:origin: alipay/sofa-rpc

  1. @Override
  2. public void operationComplete(Future future1) throws Exception {
  3. if (!future1.isSuccess()) {
  4. Throwable throwable = future1.cause();
  5. LOGGER.error("Failed to send to "
  6. + NetUtils.channelToString(localAddress(), remoteAddress())
  7. + " for msg : " + obj
  8. + ", Cause by:", throwable);
  9. }
  10. }
  11. });

代码示例来源:origin: alipay/sofa-rpc

  1. @Override
  2. public void operationComplete(Future future1) throws Exception {
  3. if (!future1.isSuccess()) {
  4. Throwable throwable = future1.cause();
  5. LOGGER.error("Failed to send to "
  6. + NetUtils.channelToString(localAddress(), remoteAddress())
  7. + " for msg : " + obj
  8. + ", Cause by:", throwable);
  9. }
  10. }
  11. });

代码示例来源:origin: alipay/sofa-rpc

  1. /**
  2. * 关闭全部客户端连接
  3. */
  4. public static void closeAll() {
  5. if (LOGGER.isInfoEnabled()) {
  6. LOGGER.info("Shutdown all client transport now!");
  7. }
  8. try {
  9. CLIENT_TRANSPORT_HOLDER.destroy();
  10. } catch (Exception e) {
  11. LOGGER.error(e.getMessage(), e);
  12. }
  13. }

代码示例来源:origin: alipay/sofa-rpc

  1. /**
  2. * 关闭全部客户端连接
  3. */
  4. public static void closeAll() {
  5. if (LOGGER.isInfoEnabled()) {
  6. LOGGER.info("Shutdown all client transport now!");
  7. }
  8. try {
  9. CLIENT_TRANSPORT_HOLDER.destroy();
  10. } catch (Exception e) {
  11. LOGGER.error(e.getMessage(), e);
  12. }
  13. }

代码示例来源:origin: alipay/sofa-rpc

  1. @Override
  2. public void operationComplete(ChannelFuture future) throws Exception {
  3. if (future.isSuccess()) {
  4. if (LOGGER.isInfoEnabled()) {
  5. LOGGER.info("HTTP/2 Server bind to {}:{} success!",
  6. transportConfig.getHost(), transportConfig.getPort());
  7. }
  8. } else {
  9. LOGGER.error("HTTP/2 Server bind to {}:{} failed!",
  10. transportConfig.getHost(), transportConfig.getPort());
  11. stop();
  12. }
  13. }
  14. });

相关文章