Skip to content

Commit

Permalink
Merge pull request #9916 from klaren/3.3-cc-idst
Browse files Browse the repository at this point in the history
Even more verboser error messages
  • Loading branch information
klaren committed Aug 28, 2017
2 parents 49f1b74 + e80cbc7 commit 3057db6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public void shouldBehaveCorrectlyUnderStress() throws Exception
catch ( Throwable e )
{
System.out.println( "Exception thrown from execution service:" );
e.printStackTrace();
e.printStackTrace( System.out );
}
finally
{
Expand Down Expand Up @@ -273,7 +273,7 @@ protected void doWork()

// Ignore throws for now
System.out.println( "InsertionWorkload encountered error:" );
e.printStackTrace();
e.printStackTrace( System.out );
}
}
}
Expand Down Expand Up @@ -311,7 +311,7 @@ protected void doWork()

// Ignore throws for now
System.out.println( "ReelectionWorkload encountered error:" );
e.printStackTrace();
e.printStackTrace( System.out );
}
}
}
Expand Down Expand Up @@ -357,7 +357,7 @@ protected void doWork()

// Ignore throws for now
System.out.println( "DeletionWorkload encountered error:" );
e.printStackTrace();
e.printStackTrace( System.out );
}
}
}
Expand Down

0 comments on commit 3057db6

Please sign in to comment.