You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2018/09/11 13:51:57 UTC

[camel-k] branch master updated: Changed log message in Sample.java in order to really rocks!

This is an automated email from the ASF dual-hosted git repository.

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/master by this push:
     new 3a8be01  Changed log message in Sample.java in order to really rocks!
3a8be01 is described below

commit 3a8be016b7bc647243071b3cef2ff0d69e9f7830
Author: Andrea Tarocchi <at...@redhat.com>
AuthorDate: Tue Sep 11 15:45:24 2018 +0200

    Changed log message in Sample.java in order to really rocks!
---
 .gitignore  | 4 ++++
 Sample.java | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index 2b30606..bd29699 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,6 +17,10 @@ tmp/_output
 tmp/_test
 tmp/_maven_output
 
+# eclipse / vscode
+.settings
+.classpath
+.factorypath
 
 # Created by https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
 
diff --git a/Sample.java b/Sample.java
index 2d73b92..4ba8c88 100644
--- a/Sample.java
+++ b/Sample.java
@@ -7,8 +7,8 @@ public class Routes extends RouteBuilder {
   @Override
   public void configure() throws Exception {
 	  from("timer:tick")
-		.setBody(constant("Hello! Camel K rocks!!!"))
-		.to("log:info");
+    .setBody(constant("-\n             r\n             o\n             c\nHello! Camel K\n             s\n             !\n"))
+		.to("log:info?skipBodyLineSeparator=false");
   }
 
 }
\ No newline at end of file