You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2021/01/27 05:50:24 UTC

[camel] 08/08: CAMEL-15341 - Fixed logging configuration

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

commit 4d3c860f362c5c679de142d16add5d5db3ea1acf
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jan 27 06:42:50 2021 +0100

    CAMEL-15341 - Fixed logging configuration
---
 .../src/test/resources/log4j2.properties             | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/components/camel-azure-storage-datalake/src/test/resources/log4j2.properties b/components/camel-azure-storage-datalake/src/test/resources/log4j2.properties
index ff832d3..b2c5e71 100644
--- a/components/camel-azure-storage-datalake/src/test/resources/log4j2.properties
+++ b/components/camel-azure-storage-datalake/src/test/resources/log4j2.properties
@@ -14,12 +14,14 @@
 ## See the License for the specific language governing permissions and
 ## limitations under the License.
 ## ---------------------------------------------------------------------------
-appender.out.layout.pattern=%d [%15.15t] %highlight{%-5p} %-30.30c - %m%n
-appender.out.layout.type=PatternLayout
-appender.out.name=out
-appender.out.type=Console
-logger.mine.level=INFO
-logger.mine.name=org.apache.camel.component.chuck
-loggers=mine
-rootLogger.appenderRef.out.ref=out
-rootLogger.level=INFO
+appender.file.type = File
+appender.file.name = file
+appender.file.fileName = target/camel-azure-storage-datalake-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 = %d [%-15.15t] %-5p %-30.30c{1} - %m%n
+rootLogger.level = INFO
+rootLogger.appenderRef.file.ref = file