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

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

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

Logger.info介绍

[英]Info.
[中]信息。

代码示例

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

  1. @Override
  2. public String echoStr(String arg) {
  3. LOGGER.info(arg);
  4. return arg;
  5. }
  6. }

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

  1. public SnappyRpcCompressor() {
  2. if (LOGGER.isInfoEnabled()) {
  3. LOGGER.info("Init Snappy compressor");
  4. }
  5. }

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

  1. public SnappyRpcCompressor() {
  2. if (LOGGER.isInfoEnabled()) {
  3. LOGGER.info("Init Snappy compressor");
  4. }
  5. }

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

  1. @Override
  2. public void stop() {
  3. if (LOGGER.isInfoEnabled()) {
  4. LOGGER.info("Shutdown the SOFA RPC HTTP/2 server transport now...");
  5. }
  6. NettyHelper.closeServerBossEventLoopGroup(transportConfig);
  7. if (bizGroup != null) {
  8. bizGroup.shutdownGracefully();
  9. }
  10. serverBootstrap = null;
  11. }
  12. }

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

  1. @Override
  2. public void stop() {
  3. if (LOGGER.isInfoEnabled()) {
  4. LOGGER.info("Shutdown the SOFA RPC HTTP/2 server transport now...");
  5. }
  6. NettyHelper.closeServerBossEventLoopGroup(transportConfig);
  7. if (bizGroup != null) {
  8. bizGroup.shutdownGracefully();
  9. }
  10. serverBootstrap = null;
  11. }
  12. }

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

  1. @Override
  2. public void stateChanged(CuratorFramework client, ConnectionState newState) {
  3. if (LOGGER.isInfoEnabled()) {
  4. LOGGER.info("reconnect to zookeeper,recover provider and consumer data");
  5. }
  6. if (newState == ConnectionState.RECONNECTED) {
  7. recoverRegistryData();
  8. }
  9. }
  10. });

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

  1. @Override
  2. public void stateChanged(CuratorFramework client, ConnectionState newState) {
  3. if (LOGGER.isInfoEnabled()) {
  4. LOGGER.info("reconnect to zookeeper,recover provider and consumer data");
  5. }
  6. if (newState == ConnectionState.RECONNECTED) {
  7. recoverRegistryData();
  8. }
  9. }
  10. });

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

  1. @Override
  2. public void userEventTriggered(ChannelHandlerContext ctx, Object evt) {
  3. if (LOGGER.isInfoEnabled()) {
  4. LOGGER.info("User Event Triggered: {}", evt);
  5. }
  6. ctx.fireUserEventTriggered(evt);
  7. }
  8. }

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

  1. @Override
  2. public void channelInactive(final ChannelHandlerContext ctx) throws Exception {
  3. Channel channel = ctx.channel();
  4. if (LOGGER.isInfoEnabled()) {
  5. LOGGER.info("Channel inactive: {}", channel);
  6. }
  7. final Exception e = new SofaRpcException(RpcErrorType.CLIENT_NETWORK, "Channel "
  8. + NetUtils.channelToString(channel.localAddress(), channel.remoteAddress())
  9. + " has been closed, remove future when channel inactive.");
  10. Iterator<Entry<Integer, Entry<ChannelFuture, AbstractHttpClientHandler>>> it =
  11. streamIdPromiseMap.entrySet().iterator();
  12. while (it.hasNext()) {
  13. Map.Entry<Integer, Entry<ChannelFuture, AbstractHttpClientHandler>> mapEntry = it.next();
  14. it.remove();
  15. Entry<ChannelFuture, AbstractHttpClientHandler> entry = mapEntry.getValue();
  16. entry.getValue().onException(e);
  17. }
  18. }

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

  1. @Override
  2. public void userEventTriggered(ChannelHandlerContext ctx, Object evt) {
  3. if (LOGGER.isInfoEnabled()) {
  4. LOGGER.info("User Event Triggered: {}", evt);
  5. }
  6. ctx.fireUserEventTriggered(evt);
  7. }
  8. }

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

  1. @Override
  2. public void channelInactive(final ChannelHandlerContext ctx) throws Exception {
  3. Channel channel = ctx.channel();
  4. if (LOGGER.isInfoEnabled()) {
  5. LOGGER.info("Channel inactive: {}", channel);
  6. }
  7. final Exception e = new SofaRpcException(RpcErrorType.CLIENT_NETWORK, "Channel "
  8. + NetUtils.channelToString(channel.localAddress(), channel.remoteAddress())
  9. + " has been closed, remove future when channel inactive.");
  10. Iterator<Entry<Integer, Entry<ChannelFuture, AbstractHttpClientHandler>>> it =
  11. streamIdPromiseMap.entrySet().iterator();
  12. while (it.hasNext()) {
  13. Map.Entry<Integer, Entry<ChannelFuture, AbstractHttpClientHandler>> mapEntry = it.next();
  14. it.remove();
  15. Entry<ChannelFuture, AbstractHttpClientHandler> entry = mapEntry.getValue();
  16. entry.getValue().onException(e);
  17. }
  18. }

代码示例来源: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. /**
  2. * 卸载全部模块
  3. */
  4. public static void uninstallModules() {
  5. for (Map.Entry<String, Module> o : INSTALLED_MODULES.entrySet()) {
  6. String moduleName = o.getKey();
  7. try {
  8. if (LOGGER.isInfoEnabled()) {
  9. LOGGER.info("Uninstall Module: {}", moduleName);
  10. }
  11. o.getValue().uninstall();
  12. INSTALLED_MODULES.remove(moduleName);
  13. } catch (Exception e) {
  14. if (LOGGER.isWarnEnabled()) {
  15. LOGGER.warn("Error when uninstall module " + moduleName, e);
  16. }
  17. }
  18. }
  19. }

代码示例来源: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. });

代码示例来源: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. });

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

  1. @Override
  2. public void stop() {
  3. if (!started) {
  4. return;
  5. }
  6. try {
  7. // 关闭端口,不关闭线程池
  8. if (LOGGER.isInfoEnabled()) {
  9. LOGGER.info("Stop the http rest server at port {}", serverConfig.getPort());
  10. }
  11. httpServer.stop();
  12. } catch (Exception e) {
  13. LOGGER.error("Stop the http rest server at port " + serverConfig.getPort() + " error !", e);
  14. }
  15. started = false;
  16. }

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

  1. @Override
  2. public void stop() {
  3. if (!started) {
  4. return;
  5. }
  6. try {
  7. // 关闭端口,不关闭线程池
  8. if (LOGGER.isInfoEnabled()) {
  9. LOGGER.info("Stop the http rest server at port {}", serverConfig.getPort());
  10. }
  11. httpServer.stop();
  12. } catch (Exception e) {
  13. LOGGER.error("Stop the http rest server at port " + serverConfig.getPort() + " error !", e);
  14. }
  15. started = false;
  16. }

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

  1. @Override
  2. public void disconnect() {
  3. try {
  4. if (connection != null) {
  5. if (LOGGER.isInfoEnabled()) {
  6. LOGGER.info("Try disconnect client transport now. The connection is {}.",
  7. NetUtils.channelToString(localAddress(), remoteAddress()));
  8. }
  9. connectionManager.closeConnection(RPC_CLIENT, transportConfig, url);
  10. connection = null;
  11. }
  12. } catch (Exception e) {
  13. throw new SofaRpcRuntimeException("", e);
  14. }
  15. }

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

  1. @Override
  2. public void disconnect() {
  3. try {
  4. if (connection != null) {
  5. if (LOGGER.isInfoEnabled()) {
  6. LOGGER.info("Try disconnect client transport now. The connection is {}.",
  7. NetUtils.channelToString(localAddress(), remoteAddress()));
  8. }
  9. connectionManager.closeConnection(RPC_CLIENT, transportConfig, url);
  10. connection = null;
  11. }
  12. } catch (Exception e) {
  13. throw new SofaRpcRuntimeException("", e);
  14. }
  15. }

相关文章