software.amazon.awssdk.utils.Logger.error()方法的使用及代码示例

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

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

Logger.error介绍

[英]Checks if error is enabled and if so logs the supplied message
[中]检查是否启用了错误,如果启用,则记录提供的消息

代码示例

代码示例来源:origin: aws/aws-sdk-java-v2

  1. public final void run(String[] args) {
  2. Options options = new Options();
  3. Stream.of(optionsToAdd).forEach(options::addOption);
  4. CommandLineParser parser = new DefaultParser();
  5. HelpFormatter help = new HelpFormatter();
  6. try {
  7. CommandLine commandLine = parser.parse(options, args);
  8. run(commandLine);
  9. } catch (ParseException e) {
  10. log.error(() -> "Invalid input: " + e.getMessage());
  11. help.printHelp(getClass().getSimpleName(), options);
  12. throw new Error();
  13. } catch (Exception e) {
  14. log.error(() -> "Script execution failed.", e);
  15. throw new Error();
  16. }
  17. }

代码示例来源:origin: aws/aws-sdk-java-v2

  1. @Override
  2. public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
  3. boolean channelInUse = getAttribute(ctx, ChannelAttributeKey.IN_USE).orElse(false);
  4. if (channelInUse) {
  5. ctx.fireExceptionCaught(cause);
  6. } else {
  7. ctx.close();
  8. Optional<CompletableFuture<Void>> executeFuture = getAttribute(ctx, ChannelAttributeKey.EXECUTE_FUTURE_KEY);
  9. if (executeFuture.isPresent() && !executeFuture.get().isDone()) {
  10. log.error(() -> "An exception occurred on an channel (" + ctx.channel().id() + ") that was not in use, " +
  11. "but was associated with a future that wasn't completed. This indicates a bug in the " +
  12. "Java SDK, where a future was not completed while the channel was in use. The channel has " +
  13. "been closed, and the future will be completed to prevent any ongoing issues.", cause);
  14. executeFuture.get().completeExceptionally(cause);
  15. } else if (cause instanceof IOException) {
  16. log.debug(() -> "An I/O exception (" + cause.getMessage() + ") occurred on a channel (" + ctx.channel().id() +
  17. ") that was not in use. The channel has been closed. This is usually normal.");
  18. } else {
  19. log.warn(() -> "A non-I/O exception occurred on a channel (" + ctx.channel().id() + ") that was not in use. " +
  20. "The channel has been closed to prevent any ongoing issues.", cause);
  21. }
  22. }
  23. }

代码示例来源:origin: software.amazon.awssdk/netty-nio-client

  1. @Override
  2. public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
  3. boolean channelInUse = getAttribute(ctx, ChannelAttributeKey.IN_USE).orElse(false);
  4. if (channelInUse) {
  5. ctx.fireExceptionCaught(cause);
  6. } else {
  7. ctx.close();
  8. Optional<CompletableFuture<Void>> executeFuture = getAttribute(ctx, ChannelAttributeKey.EXECUTE_FUTURE_KEY);
  9. if (executeFuture.isPresent() && !executeFuture.get().isDone()) {
  10. log.error(() -> "An exception occurred on an channel (" + ctx.channel().id() + ") that was not in use, " +
  11. "but was associated with a future that wasn't completed. This indicates a bug in the " +
  12. "Java SDK, where a future was not completed while the channel was in use. The channel has " +
  13. "been closed, and the future will be completed to prevent any ongoing issues.", cause);
  14. executeFuture.get().completeExceptionally(cause);
  15. } else if (cause instanceof IOException) {
  16. log.debug(() -> "An I/O exception (" + cause.getMessage() + ") occurred on a channel (" + ctx.channel().id() +
  17. ") that was not in use. The channel has been closed. This is usually normal.");
  18. } else {
  19. log.warn(() -> "A non-I/O exception occurred on a channel (" + ctx.channel().id() + ") that was not in use. " +
  20. "The channel has been closed to prevent any ongoing issues.", cause);
  21. }
  22. }
  23. }

代码示例来源:origin: software.amazon.awssdk/sdk-core

  1. } catch (IOException deletionException) {
  2. Logger.loggerFor(ResponseTransformer.class)
  3. .error(() -> "Failed to delete destination file '" + path +
  4. "' after reading the service response " +
  5. "failed.", deletionException);

相关文章