Skip to content

Commit

Permalink
Merge pull request #132 from basil/printStackTrace
Browse files Browse the repository at this point in the history
Use Functions.printStackTrace
  • Loading branch information
dwnusbaum authored Aug 2, 2019
2 parents 86dfc3f + 327d2b2 commit 7f87216
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ public void replaceAction(Action a) {
} catch (AbortException x) {
listener.error("polling failed in " + co.workspace + " on " + co.node + ": " + x.getMessage());
} catch (Exception x) {
listener.error("polling failed in " + co.workspace + " on " + co.node).println(Functions.printThrowable(x).trim()); // TODO 2.43+ use Functions.printStackTrace
Functions.printStackTrace(x, listener.error("polling failed in " + co.workspace + " on " + co.node));
}
}
return result;
Expand Down

0 comments on commit 7f87216

Please sign in to comment.