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

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

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

Logger.warn介绍

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

代码示例

代码示例来源:origin: software.amazon.awssdk/aws-xml-protocol

  1. private void closeStream(SdkHttpFullResponse response) {
  2. response.content().ifPresent(i -> {
  3. try {
  4. i.close();
  5. } catch (IOException e) {
  6. log.warn(() -> "Error closing HTTP content.", e);
  7. }
  8. });
  9. }

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

  1. @Override
  2. public String getEnumValueName(String enumValue) {
  3. String result = enumValue;
  4. // Special cases
  5. result = result.replaceAll("textORcsv", "TEXT_OR_CSV");
  6. // Split into words
  7. result = String.join("_", splitOnWordBoundaries(result));
  8. // Enums should be upper-case
  9. result = StringUtils.upperCase(result);
  10. if (!result.matches("^[A-Z][A-Z0-9_]*$")) {
  11. String attempt = result;
  12. log.warn(() -> "Invalid enum member generated for input '" + enumValue + "'. Best attempt: '" + attempt + "' If this "
  13. + "enum is not customized out, the build will fail.");
  14. }
  15. return result;
  16. }

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

  1. private void closeStream(SdkHttpFullResponse response) {
  2. response.content().ifPresent(i -> {
  3. try {
  4. i.close();
  5. } catch (IOException e) {
  6. log.warn(() -> "Error closing HTTP content.", e);
  7. }
  8. });
  9. }

代码示例来源:origin: software.amazon.awssdk/codegen

  1. @Override
  2. public String getEnumValueName(String enumValue) {
  3. String result = enumValue;
  4. // Special cases
  5. result = result.replaceAll("textORcsv", "TEXT_OR_CSV");
  6. // Split into words
  7. result = String.join("_", splitOnWordBoundaries(result));
  8. // Enums should be upper-case
  9. result = StringUtils.upperCase(result);
  10. if (!result.matches("^[A-Z][A-Z0-9_]*$")) {
  11. String attempt = result;
  12. log.warn(() -> "Invalid enum member generated for input '" + enumValue + "'. Best attempt: '" + attempt + "' If this "
  13. + "enum is not customized out, the build will fail.");
  14. }
  15. return result;
  16. }

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

  1. private SSLContext getSslContext(AttributeMap standardOptions) {
  2. TrustManager[] trustManagers = null;
  3. if (standardOptions.get(SdkHttpConfigurationOption.TRUST_ALL_CERTIFICATES)) {
  4. log.warn(() -> "SSL Certificate verification is disabled. This is not a safe setting and should only be "
  5. + "used for testing.");
  6. trustManagers = trustAllTrustManager();
  7. }
  8. try {
  9. SSLContext sslcontext = SSLContext.getInstance("TLS");
  10. // http://download.java.net/jdk9/docs/technotes/guides/security/jsse/JSSERefGuide.html
  11. sslcontext.init(null, trustManagers, null);
  12. return sslcontext;
  13. } catch (final NoSuchAlgorithmException | KeyManagementException ex) {
  14. throw new SSLInitializationException(ex.getMessage(), ex);
  15. }
  16. }

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

  1. standardizedProfileName = "default";
  2. } else {
  3. log.warn(() -> "Ignoring profile '" + rawProfileName + "' on line " + state.currentLineNumber + " because it " +
  4. "did not start with 'profile ' and it was not 'default'.");
  5. return Optional.empty();
  6. log.warn(() -> "Ignoring profile '" + standardizedProfileName + "' on line " + state.currentLineNumber + " because " +
  7. "it was not alphanumeric with dashes or underscores.");
  8. return Optional.empty();
  9. log.warn(() -> "Ignoring profile '[default]' on line " + state.currentLineNumber + ", because " +
  10. "'[profile default]' was already seen in the same file.");
  11. return Optional.empty();
  12. } else if (hasProfilePrefix && !state.seenDefaultProfileWithProfilePrefix) {
  13. log.warn(() -> "Ignoring earlier-seen '[default]', because '[profile default]' was found on line " +
  14. state.currentLineNumber);
  15. state.profiles.remove("default");

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

  1. /**
  2. * Given a property line, load the property key and value. If the property line is invalid and should be ignored, this will
  3. * return empty.
  4. */
  5. private static Optional<Pair<String, String>> parsePropertyDefinition(ParserState state, String line) {
  6. int firstEqualsLocation = line.indexOf('=');
  7. Validate.isTrue(firstEqualsLocation != -1, "Expected an '=' sign defining a property on line " + state.currentLineNumber);
  8. String propertyKey = StringUtils.trim(line.substring(0, firstEqualsLocation));
  9. String propertyValue = StringUtils.trim(line.substring(firstEqualsLocation + 1));
  10. Validate.isTrue(!propertyKey.isEmpty(), "Property did not have a name on line " + state.currentLineNumber);
  11. // If the profile name includes invalid characters, it should be ignored.
  12. if (!isValidIdentifier(propertyKey)) {
  13. log.warn(() -> "Ignoring property '" + propertyKey + "' on line " + state.currentLineNumber + " because " +
  14. "its name was not alphanumeric with dashes or underscores.");
  15. return Optional.empty();
  16. }
  17. return Optional.of(Pair.of(propertyKey, propertyValue));
  18. }

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

  1. @Override
  2. public T handle(SdkHttpFullResponse response, ExecutionAttributes executionAttributes) throws Exception {
  3. try {
  4. return unmarshallResponse(response);
  5. } finally {
  6. response.content().ifPresent(i -> {
  7. try {
  8. i.close();
  9. } catch (IOException e) {
  10. log.warn(() -> "Error closing HTTP content.", e);
  11. }
  12. });
  13. }
  14. }

代码示例来源:origin: software.amazon.awssdk/profiles

  1. standardizedProfileName = "default";
  2. } else {
  3. log.warn(() -> "Ignoring profile '" + rawProfileName + "' on line " + state.currentLineNumber + " because it " +
  4. "did not start with 'profile ' and it was not 'default'.");
  5. return Optional.empty();
  6. log.warn(() -> "Ignoring profile '" + standardizedProfileName + "' on line " + state.currentLineNumber + " because " +
  7. "it was not alphanumeric with dashes or underscores.");
  8. return Optional.empty();
  9. log.warn(() -> "Ignoring profile '[default]' on line " + state.currentLineNumber + ", because " +
  10. "'[profile default]' was already seen in the same file.");
  11. return Optional.empty();
  12. } else if (hasProfilePrefix && !state.seenDefaultProfileWithProfilePrefix) {
  13. log.warn(() -> "Ignoring earlier-seen '[default]', because '[profile default]' was found on line " +
  14. state.currentLineNumber);
  15. state.profiles.remove("default");

代码示例来源:origin: software.amazon.awssdk/aws-query-protocol

  1. @Override
  2. public T handle(SdkHttpFullResponse response, ExecutionAttributes executionAttributes) throws Exception {
  3. try {
  4. return unmarshallResponse(response);
  5. } finally {
  6. response.content().ifPresent(i -> {
  7. try {
  8. i.close();
  9. } catch (IOException e) {
  10. log.warn(() -> "Error closing HTTP content.", e);
  11. }
  12. });
  13. }
  14. }

代码示例来源: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/profiles

  1. /**
  2. * Given a property line, load the property key and value. If the property line is invalid and should be ignored, this will
  3. * return empty.
  4. */
  5. private static Optional<Pair<String, String>> parsePropertyDefinition(ParserState state, String line) {
  6. int firstEqualsLocation = line.indexOf('=');
  7. Validate.isTrue(firstEqualsLocation != -1, "Expected an '=' sign defining a property on line " + state.currentLineNumber);
  8. String propertyKey = StringUtils.trim(line.substring(0, firstEqualsLocation));
  9. String propertyValue = StringUtils.trim(line.substring(firstEqualsLocation + 1));
  10. Validate.isTrue(!propertyKey.isEmpty(), "Property did not have a name on line " + state.currentLineNumber);
  11. // If the profile name includes invalid characters, it should be ignored.
  12. if (!isValidIdentifier(propertyKey)) {
  13. log.warn(() -> "Ignoring property '" + propertyKey + "' on line " + state.currentLineNumber + " because " +
  14. "its name was not alphanumeric with dashes or underscores.");
  15. return Optional.empty();
  16. }
  17. return Optional.of(Pair.of(propertyKey, propertyValue));
  18. }

代码示例来源: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/profiles

  1. log.warn(() -> "Warning: Duplicate property '" + property.left() + "' detected on line " + state.currentLineNumber +
  2. ". The later one in the file will be used.");

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

  1. log.warn(() -> "Warning: Duplicate property '" + property.left() + "' detected on line " + state.currentLineNumber +
  2. ". The later one in the file will be used.");

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

  1. /**
  2. * Report the failure to the execution interceptors. Swallow any exceptions thrown from the interceptor since
  3. * we don't want to replace the execution failure.
  4. *
  5. * @param context The execution context.
  6. * @param failure The execution failure.
  7. */
  8. public static Throwable reportFailureToInterceptors(RequestExecutionContext context, Throwable failure) {
  9. DefaultFailedExecutionContext modifiedContext = runModifyException(context, failure);
  10. try {
  11. context.interceptorChain().onExecutionFailure(modifiedContext, context.executionAttributes());
  12. } catch (Exception exception) {
  13. log.warn(() -> "Interceptor chain threw an error from onExecutionFailure().", exception);
  14. }
  15. return modifiedContext.exception();
  16. }

相关文章