Skip to content

Commit

Permalink
Print the stack trace.
Browse files Browse the repository at this point in the history
We're not completely blind in there, are we.
  • Loading branch information
paulp committed Jul 19, 2012
1 parent a40a90f commit e200a8e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/partest/scala/tools/partest/nest/DirectRunner.scala
Expand Up @@ -61,8 +61,9 @@ trait DirectRunner {
pool.shutdown()
try if (!pool.awaitTermination(4, TimeUnit.HOURS))
NestUI.warning("Thread pool timeout elapsed before all tests were complete!")
catch { case _: InterruptedException =>
catch { case t: InterruptedException =>
NestUI.warning("Thread pool was interrupted")
t.printStackTrace()
}

for ((file, future) <- futures) yield {
Expand Down

0 comments on commit e200a8e

Please sign in to comment.