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

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

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

Logger.debug介绍

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

代码示例

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

  1. public void buffer(byte read) {
  2. pos = -1;
  3. if (byteBuffered >= maxBufferSize) {
  4. log.debug(() -> "Buffer size " + maxBufferSize
  5. + " has been exceeded and the input stream "
  6. + "will not be repeatable. Freeing buffer memory");
  7. bufferSizeOverflow = true;
  8. } else {
  9. bufferArray[byteBuffered++] = read;
  10. }
  11. }

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

  1. public void buffer(byte read) {
  2. pos = -1;
  3. if (byteBuffered >= maxBufferSize) {
  4. log.debug(() -> "Buffer size " + maxBufferSize
  5. + " has been exceeded and the input stream "
  6. + "will not be repeatable. Freeing buffer memory");
  7. bufferSizeOverflow = true;
  8. } else {
  9. bufferArray[byteBuffered++] = read;
  10. }
  11. }

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

  1. public void buffer(byte[] src, int srcPos, int length) {
  2. pos = -1;
  3. if (byteBuffered + length > maxBufferSize) {
  4. log.debug(() -> "Buffer size " + maxBufferSize
  5. + " has been exceeded and the input stream "
  6. + "will not be repeatable. Freeing buffer memory");
  7. bufferSizeOverflow = true;
  8. } else {
  9. System.arraycopy(src, srcPos, bufferArray, byteBuffered, length);
  10. byteBuffered += length;
  11. }
  12. }

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

  1. public void buffer(byte[] src, int srcPos, int length) {
  2. pos = -1;
  3. if (byteBuffered + length > maxBufferSize) {
  4. log.debug(() -> "Buffer size " + maxBufferSize
  5. + " has been exceeded and the input stream "
  6. + "will not be repeatable. Freeing buffer memory");
  7. bufferSizeOverflow = true;
  8. } else {
  9. System.arraycopy(src, srcPos, bufferArray, byteBuffered, length);
  10. byteBuffered += length;
  11. }
  12. }

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

  1. @Override
  2. public void checkClientTrusted(X509Certificate[] x509Certificates, String s) throws CertificateException {
  3. log.debug(() -> "Accepting a client certificate: " + x509Certificates[0].getSubjectDN());
  4. }

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

  1. /**
  2. * Create a chain that will execute the provided interceptors in the order they are provided.
  3. */
  4. public ExecutionInterceptorChain(List<ExecutionInterceptor> interceptors) {
  5. this.interceptors = new ArrayList<>(Validate.paramNotNull(interceptors, "interceptors"));
  6. LOG.debug(() -> "Creating an interceptor chain that will apply interceptors in the following order: " + interceptors);
  7. }

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

  1. @Override
  2. public void shutdownOutput() throws IOException {
  3. log.debug(() -> "shutting down output of " + endpoint());
  4. sock.shutdownOutput();
  5. }
  6. }

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

  1. @Override
  2. public void connect(SocketAddress endpoint) throws IOException {
  3. log.trace(() -> "connecting to: " + endpoint);
  4. sock.connect(endpoint);
  5. log.debug(() -> "connected to: " + endpoint);
  6. }

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

  1. @Override
  2. public void connect(SocketAddress endpoint, int timeout) throws IOException {
  3. log.trace(() -> "connecting to: " + endpoint);
  4. sock.connect(endpoint, timeout);
  5. log.debug(() -> "connected to: " + endpoint);
  6. }

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

  1. @Override
  2. public int read() throws IOException {
  3. byte[] tmp = new byte[1];
  4. int count = read(tmp, 0, 1);
  5. if (count != -1) {
  6. log.debug(() -> "One byte read from the stream.");
  7. int unsignedByte = (int) tmp[0] & 0xFF;
  8. return unsignedByte;
  9. } else {
  10. return count;
  11. }
  12. }

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

  1. @Override
  2. public void close() throws IOException {
  3. log.debug(() -> "closing " + endpoint());
  4. sock.close();
  5. }

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

  1. @Override
  2. public void shutdownInput() throws IOException {
  3. log.debug(() -> "shutting down input of " + endpoint());
  4. sock.shutdownInput();
  5. }

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

  1. @Override
  2. public int read() throws IOException {
  3. byte[] tmp = new byte[1];
  4. int count = read(tmp, 0, 1);
  5. if (count != -1) {
  6. log.debug(() -> "One byte read from the stream.");
  7. int unsignedByte = (int) tmp[0] & 0xFF;
  8. return unsignedByte;
  9. } else {
  10. return count;
  11. }
  12. }

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

  1. @Override
  2. protected void channelIdle(ChannelHandlerContext ctx, IdleStateEvent event) {
  3. assert ctx.channel().eventLoop().inEventLoop();
  4. boolean channelNotInUse = Boolean.FALSE.equals(ctx.channel().attr(ChannelAttributeKey.IN_USE).get());
  5. if (channelNotInUse && ctx.channel().isOpen()) {
  6. log.debug(() -> "Closing unused connection (" + ctx.channel().id() + ") because it has been idle for longer than " +
  7. maxIdleTimeMillis + " milliseconds.");
  8. ctx.close();
  9. }
  10. }
  11. }

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

  1. @Override
  2. public Future<Void> release(Channel channel, Promise<Void> promise) {
  3. doInEventLoop(channel.eventLoop(), () -> {
  4. boolean shouldCloseOnRelease = Boolean.TRUE.equals(channel.attr(ChannelAttributeKey.CLOSE_ON_RELEASE).get());
  5. if (shouldCloseOnRelease && channel.isOpen() && !channel.eventLoop().isShuttingDown()) {
  6. log.debug(() -> "Closing connection (" + channel.id() + "), instead of releasing it.");
  7. channel.close();
  8. }
  9. delegatePool.release(channel, promise);
  10. });
  11. return promise;
  12. }

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

  1. @Override
  2. public void connect(SocketAddress endpoint) throws IOException {
  3. log.trace(() -> "connecting to: " + endpoint);
  4. sock.connect(endpoint);
  5. log.debug(() -> "connected to: " + endpoint);
  6. }

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

  1. @Override
  2. public void connect(SocketAddress endpoint, int timeout) throws IOException {
  3. log.trace(() -> "connecting to: " + endpoint);
  4. sock.connect(endpoint, timeout);
  5. log.debug(() -> "connected to: " + endpoint);
  6. }

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

  1. @Override
  2. public void close() throws IOException {
  3. log.debug(() -> "closing " + endpoint());
  4. sock.close();
  5. }

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

  1. @Override
  2. public void shutdownInput() throws IOException {
  3. log.debug(() -> "shutting down input of " + endpoint());
  4. sock.shutdownInput();
  5. }

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

  1. @Override
  2. public void shutdownOutput() throws IOException {
  3. log.debug(() -> "shutting down output of " + endpoint());
  4. sock.shutdownOutput();
  5. }
  6. }

相关文章