This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 62df0e20883deebd80d9b602d23f43699c0222f0 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Fri Mar 18 15:02:51 2022 +0100 camel-core - InvalidPayloadException should not log body output (can be sensitive or very big). --- .../src/main/java/org/apache/camel/NoSuchPropertyException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/camel-api/src/main/java/org/apache/camel/NoSuchPropertyException.java b/core/camel-api/src/main/java/org/apache/camel/NoSuchPropertyException.java index 99e8137..fe8ae0a 100644 --- a/core/camel-api/src/main/java/org/apache/camel/NoSuchPropertyException.java +++ b/core/camel-api/src/main/java/org/apache/camel/NoSuchPropertyException.java @@ -51,6 +51,6 @@ public class NoSuchPropertyException extends CamelExchangeException { if (value == null) { return ""; } - return " but has value: " + value + " of type: " + value.getClass().getCanonicalName(); + return " but has type: " + value.getClass().getCanonicalName(); } }