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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2634dfb  CAMEL-16001 - Fixed logger configuration for tests
2634dfb is described below

commit 2634dfbeadb17a99874b30aa806c46f799a36880
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Thu Jan 28 08:30:36 2021 +0100

    CAMEL-16001 - Fixed logger configuration for tests
---
 .../camel-huaweicloud-smn/src/test/resources/log4j2.properties   | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git 
a/components/camel-huaweicloud-smn/src/test/resources/log4j2.properties 
b/components/camel-huaweicloud-smn/src/test/resources/log4j2.properties
index d9f0508..1a67160 100644
--- a/components/camel-huaweicloud-smn/src/test/resources/log4j2.properties
+++ b/components/camel-huaweicloud-smn/src/test/resources/log4j2.properties
@@ -15,9 +15,16 @@
 ## limitations under the License.
 ## ---------------------------------------------------------------------------
 
+appender.file.type = File
+appender.file.name = file
+appender.file.fileName = target/camel-huawei-smn-test.log
+appender.file.layout.type = PatternLayout
+appender.file.layout.pattern = %d [%-15.15t] %-5p %-30.30c{1} - %m%n
 appender.out.type = Console
 appender.out.name = out
 appender.out.layout.type = PatternLayout
 appender.out.layout.pattern = [%30.30t] %-30.30c{1} %-5p %m%n
+logger.caffeine.name = org.apache.camel.component.caffeine
+logger.caffeine.level = TRACE
 rootLogger.level = INFO
-rootLogger.appenderRef.out.ref = out
+rootLogger.appenderRef.file.ref = file

Reply via email to