Repository: logging-log4j2 Updated Branches: refs/heads/master 9c878544b -> be7fdb43f
Better ivar name. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/be7fdb43 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/be7fdb43 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/be7fdb43 Branch: refs/heads/master Commit: be7fdb43fc1947a5196e01e07f6a5c90ba9fdafb Parents: 9c87854 Author: Gary Gregory <[email protected]> Authored: Tue Sep 2 22:58:03 2014 -0400 Committer: Gary Gregory <[email protected]> Committed: Tue Sep 2 22:58:03 2014 -0400 ---------------------------------------------------------------------- .../apache/logging/log4j/streams/util/ByteStreamLogger.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/be7fdb43/log4j-streams/src/main/java/org/apache/logging/log4j/streams/util/ByteStreamLogger.java ---------------------------------------------------------------------- diff --git a/log4j-streams/src/main/java/org/apache/logging/log4j/streams/util/ByteStreamLogger.java b/log4j-streams/src/main/java/org/apache/logging/log4j/streams/util/ByteStreamLogger.java index b7bdf25..1b2c69f 100644 --- a/log4j-streams/src/main/java/org/apache/logging/log4j/streams/util/ByteStreamLogger.java +++ b/log4j-streams/src/main/java/org/apache/logging/log4j/streams/util/ByteStreamLogger.java @@ -58,7 +58,7 @@ public class ByteStreamLogger { private final ExtendedLogger logger; private final Level level; private final Marker marker; - private final ByteBufferInputStream in; + private final ByteBufferInputStream inputStream; private final InputStreamReader reader; private final char[] msgBuf = new char[BUFFER_SIZE]; private final StringBuilder msg = new StringBuilder(); @@ -70,8 +70,8 @@ public class ByteStreamLogger { this.logger = logger; this.level = level; this.marker = marker; - this.in = new ByteBufferInputStream(); - this.reader = new InputStreamReader(this.in, charset); + this.inputStream = new ByteBufferInputStream(); + this.reader = new InputStreamReader(this.inputStream, charset); } public void close(final String fqcn) {
