You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2015/11/06 08:31:49 UTC

[02/10] camel git commit: CAMEL-9286: Log component should include log formatter options in component docs.

CAMEL-9286: Log component should include log formatter options in component docs.


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/4b233327
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/4b233327
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/4b233327

Branch: refs/heads/master
Commit: 4b233327b012051525c7e794901ab83938ca4b66
Parents: 23618a1
Author: Claus Ibsen <da...@apache.org>
Authored: Thu Nov 5 22:08:01 2015 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Fri Nov 6 08:34:25 2015 +0100

----------------------------------------------------------------------
 .../java/org/apache/camel/processor/DefaultExchangeFormatter.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/4b233327/camel-core/src/main/java/org/apache/camel/processor/DefaultExchangeFormatter.java
----------------------------------------------------------------------
diff --git a/camel-core/src/main/java/org/apache/camel/processor/DefaultExchangeFormatter.java b/camel-core/src/main/java/org/apache/camel/processor/DefaultExchangeFormatter.java
index 9b61b76..a6d08fb 100644
--- a/camel-core/src/main/java/org/apache/camel/processor/DefaultExchangeFormatter.java
+++ b/camel-core/src/main/java/org/apache/camel/processor/DefaultExchangeFormatter.java
@@ -74,7 +74,7 @@ public class DefaultExchangeFormatter implements ExchangeFormatter {
     private boolean showStreams;
     @UriParam(label = "formatting")
     private boolean showFiles;
-    @UriParam(label = "formatting", defaultValue = "1000")
+    @UriParam(label = "formatting", defaultValue = "10000")
     private int maxChars = 10000;
     @UriParam(label = "formatting", enums = "Default,Tab,Fixed", defaultValue = "Default")
     private OutputStyle style = OutputStyle.Default;