Fix locally failing test in FlushingIntegrationTests

This commit is contained in:
Rossen Stoyanchev
2018-06-29 18:09:30 -03:00
parent 3165b3c024
commit 907a306ee2
7 changed files with 47 additions and 37 deletions

View File

@@ -207,7 +207,7 @@ public final class StringDecoder extends AbstractDataBufferDecoder<String> {
DataBufferUtils.release(dataBuffer);
String value = charBuffer.toString();
if (logger.isDebugEnabled()) {
logger.debug("Decoded '" + "'");
logger.debug("Decoded '" + value + "'");
}
return value;
}