Skip to content

Commit

Permalink
Don't print out "Writing " in the debug message that prints out extra…
Browse files Browse the repository at this point in the history
…cted csv.
  • Loading branch information
chenson42 committed Sep 15, 2011
1 parent 610f3ac commit bbdbae9
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -98,7 +98,9 @@ public static int write(Writer writer, String... data) throws IOException {
}

writer.write(buffer.toString());
log.debug("BufferWriting", buffer);
if (log.isDebugEnabled()) {
log.debug("BufferWriting", buffer);
}
return buffer.length();
}

Expand Down

0 comments on commit bbdbae9

Please sign in to comment.