All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rt.storage.api.client.util.LoggingStreamingContent Maven / Gradle / Ivy

package com.rt.storage.api.client.util;

import java.io.IOException;
import java.io.OutputStream;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 * Wraps another streaming content without modifying the content, but also logging content using
 * {@link LoggingOutputStream}.
 *
 * 

Implementation is not thread-safe. * * @author Yaniv Inbar * @since 1.14 */ public final class LoggingStreamingContent implements StreamingContent { /** Streaming content. */ private final StreamingContent content; /** Maximum number of bytes to log or {@code 0} to avoid logging content. */ private final int contentLoggingLimit; /** Logging level. */ private final Level loggingLevel; /** Logger. */ private final Logger logger; /** * @param content streaming content * @param logger logger * @param loggingLevel logging level * @param contentLoggingLimit maximum number of bytes to log or {@code 0} to avoid logging content */ public LoggingStreamingContent( StreamingContent content, Logger logger, Level loggingLevel, int contentLoggingLimit) { this.content = content; this.logger = logger; this.loggingLevel = loggingLevel; this.contentLoggingLimit = contentLoggingLimit; } public void writeTo(OutputStream out) throws IOException { LoggingOutputStream loggableOutputStream = new LoggingOutputStream(out, logger, loggingLevel, contentLoggingLimit); try { content.writeTo(loggableOutputStream); } finally { // force the log stream to close loggableOutputStream.getLogStream().close(); } out.flush(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy