WW-4519 Adds additional log statement when sending stream

This commit is contained in:
Lukasz Lenart
2015-06-28 16:16:52 +02:00
parent 4672c9ebb5
commit 2ef7cd1223
@@ -278,6 +278,7 @@ public class StreamResult extends StrutsResultSupport {
byte[] oBuff = new byte[bufferSize];
int iSize;
while (-1 != (iSize = inputStream.read(oBuff))) {
LOG.debug("Sending stream ... {}", iSize);
oOutput.write(oBuff, 0, iSize);
}
LOG.debug("Streaming to output buffer +++ END +++");