Skip to content

Commit

Permalink
Delete log message
Browse files Browse the repository at this point in the history
  • Loading branch information
danepitkin committed Mar 28, 2024
1 parent fce750c commit 9338b13
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 5 additions & 0 deletions java/performance/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@
<artifactId>slf4j-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,6 @@ public long align() throws IOException {
*/
public long write(ByteBuffer buffer) throws IOException {
long length = buffer.remaining();
if (LOGGER.isDebugEnabled()) {
LOGGER.debug("Writing buffer with size: {}", length);
}
while (buffer.hasRemaining()) {
out.write(buffer);
}
Expand Down

0 comments on commit 9338b13

Please sign in to comment.