// If we have a cachedStream, we are caching the request.
if (cachedStream != null) {
if (LOG.isLoggable(Level.FINE)) {
StringBuffer sbuf = new StringBuffer();
StringBufferOutputStream sout =
new StringBufferOutputStream(sbuf);
IOUtils.copy(cachedStream.getInputStream(), sout, 2048);
sout.close();
LOG.fine("Conduit \""
+ getConduitName()
+ "\" Transmit cached message to: "
+ connection.getURL()