Bug fixes

This commit is contained in:
Ziver Koc 2015-04-09 21:14:25 +00:00
parent c22c866000
commit a199165756
10 changed files with 171 additions and 55 deletions

View file

@ -89,8 +89,9 @@ public class CompactLogFormatter extends Formatter{
ret.append( data );
ret.append( array[i] );
}
ret.append( '\n' );
}
ret.append( '\n' );
if( record.getThrown() != null ){
StringOutputStream out = new StringOutputStream();
record.getThrown().printStackTrace(new PrintStream(out));