use of org.apache.ignite.internal.commandline.StringBuilderOutputStream in project ignite by apache.
the class IgniteIndexReader method printStackTrace.
/**
*/
private void printStackTrace(Throwable e) {
OutputStream os = new StringBuilderOutputStream();
e.printStackTrace(new PrintStream(os));
outStream.println(os.toString());
}
Aggregations