Commit 9de7b243 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Write log files using UTF-8 encoding.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@972 b35dd754-fafc-0310-a699-88a17e54d16e
parent da952aea
......@@ -68,7 +68,7 @@ public class StreamTarget extends AbstractOutputTarget {
try {
//TODO: We should be able to specify encoding???
outputStream.write(data.getBytes());
outputStream.write(data.getBytes("UTF-8"));
outputStream.flush();
}
catch (final IOException ioe) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment