You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by po...@apache.org on 2020/12/15 14:51:44 UTC

[creadur-tentacles] 02/02: TENTACLES-12: Add log4j2 config

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

pottlinger pushed a commit to branch feature/TENTACLES-12
in repository https://gitbox.apache.org/repos/asf/creadur-tentacles.git

commit b2b2a868ced4d46ea48357a53f6a480c5f986e6f
Author: Hugo Hirsch <gi...@hugo-hirsch.de>
AuthorDate: Tue Dec 15 15:51:17 2020 +0100

    TENTACLES-12: Add log4j2 config
---
 src/main/resources/log4j2.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/src/main/resources/log4j2.xml b/src/main/resources/log4j2.xml
new file mode 100644
index 0000000..d2a6c7a
--- /dev/null
+++ b/src/main/resources/log4j2.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Configuration status="WARN">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Root level="info">
+      <AppenderRef ref="Console"/>
+    </Root>
+  </Loggers>
+</Configuration>
+