summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Musum <musum@yahoo-inc.com>2017-06-13 11:14:36 +0200
committerGitHub <noreply@github.com>2017-06-13 11:14:36 +0200
commit1615db037b867b884ba249972150e07d766289a4 (patch)
treee9e3925121e2181d93191a0f6126380bf7605876
parent4d3693a6ce34f672308b8d7e2c3dfb2b8b7111aa (diff)
parentd4fd957539e3d642369b62d8bc07527a4c9a00c0 (diff)
Merge pull request #2723 from yahoo/balder/include-stacktrace-in-trace
Next time we will now what happened.....
-rwxr-xr-xmessagebus/src/main/java/com/yahoo/messagebus/routing/RoutingNode.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/messagebus/src/main/java/com/yahoo/messagebus/routing/RoutingNode.java b/messagebus/src/main/java/com/yahoo/messagebus/routing/RoutingNode.java
index e394b133bca..26c103e7877 100755
--- a/messagebus/src/main/java/com/yahoo/messagebus/routing/RoutingNode.java
+++ b/messagebus/src/main/java/com/yahoo/messagebus/routing/RoutingNode.java
@@ -234,7 +234,7 @@ public class RoutingNode implements ReplyHandler {
policy.merge(routingContext);
} catch (RuntimeException e) {
setError(ErrorCode.POLICY_ERROR,
- "Policy '" + dir.getName() + "' threw an exception; " + e.toString());
+ "Policy '" + dir.getName() + "' threw an exception; " + exceptionMessageWithTrace(e));
}
if (reply == null) {
setError(ErrorCode.APP_FATAL_ERROR,