Skip to content

Commit

Permalink
Merge pull request #11 from Cousjava/fullstacktrace
Browse files Browse the repository at this point in the history
Exception in managed thread now prints full stack trace
  • Loading branch information
smillidge committed Jun 14, 2018
2 parents 991ba2b + eb4a864 commit d5701c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public void run() {
} catch (ThreadExpiredException ex) {
Logger.getLogger("org.glassfish.enterprise.concurrent").log(Level.INFO, ex.toString());
} catch (Throwable t) {
Logger.getLogger("org.glassfish.enterprise.concurrent").log(Level.SEVERE, t.toString());
Logger.getLogger("org.glassfish.enterprise.concurrent").log(Level.SEVERE, name, t);
} finally {
if (handle != null) {
contextSetupProvider.reset(handle);
Expand Down

0 comments on commit d5701c1

Please sign in to comment.