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/27 08:28:01 UTC

[3/3] camel git commit: Polished. Fixes #678. Fixed #677. Fixes #662.

Polished. Fixes #678. Fixed #677. Fixes #662.


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

Branch: refs/heads/master
Commit: 59a3f6bdb9091014b79caec864bf90c61838d894
Parents: ea12ee7
Author: Claus Ibsen <da...@apache.org>
Authored: Fri Nov 27 08:27:49 2015 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Fri Nov 27 08:27:49 2015 +0100

----------------------------------------------------------------------
 .../src/test/resources/application.properties         |  2 ++
 .../camel-spring-boot/src/test/resources/logback.xml  | 14 ++++++++++++--
 2 files changed, 14 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/59a3f6bd/components/camel-spring-boot/src/test/resources/application.properties
----------------------------------------------------------------------
diff --git a/components/camel-spring-boot/src/test/resources/application.properties b/components/camel-spring-boot/src/test/resources/application.properties
index ab48a84..c82e80b 100644
--- a/components/camel-spring-boot/src/test/resources/application.properties
+++ b/components/camel-spring-boot/src/test/resources/application.properties
@@ -15,5 +15,7 @@
 # limitations under the License.
 #
 
+spring.main.banner_mode=off
+
 from=direct:test
 to=mock:test
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/camel/blob/59a3f6bd/components/camel-spring-boot/src/test/resources/logback.xml
----------------------------------------------------------------------
diff --git a/components/camel-spring-boot/src/test/resources/logback.xml b/components/camel-spring-boot/src/test/resources/logback.xml
index e573bd4..21594c9 100644
--- a/components/camel-spring-boot/src/test/resources/logback.xml
+++ b/components/camel-spring-boot/src/test/resources/logback.xml
@@ -16,6 +16,16 @@
   limitations under the License.
 -->
 <configuration>
-  <include resource="org/springframework/boot/logging/logback/base.xml"/>
-  <logger name="org.apache.camel.spring.boot" level="INFO"/>
+
+  <appender name="FILE" class="ch.qos.logback.core.FileAppender">
+    <encoder>
+      <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
+    </encoder>
+    <file>target/camel-spring-boot-test.log</file>
+  </appender>
+
+  <root level="INFO">
+    <appender-ref ref="FILE"/>
+  </root>
+
 </configuration>
\ No newline at end of file