You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by po...@apache.org on 2019/05/12 21:47:26 UTC

[incubator-tamaya-site] 02/10: TAMAYA-393: Update to jbake 2.6.4

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

pottlinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tamaya-site.git

commit ac9007fe7d5447974dc175ab265162eb337e9df0
Author: Hugo Hirsch <gi...@hugo-hirsch.de>
AuthorDate: Sun May 12 23:42:24 2019 +0200

    TAMAYA-393: Update to jbake 2.6.4
---
 bin/jbake-2.6.4-bin/lib/logging/logback.xml | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/bin/jbake-2.6.4-bin/lib/logging/logback.xml b/bin/jbake-2.6.4-bin/lib/logging/logback.xml
new file mode 100644
index 0000000..22cd77f
--- /dev/null
+++ b/bin/jbake-2.6.4-bin/lib/logging/logback.xml
@@ -0,0 +1,24 @@
+<configuration>
+
+    <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
+        <!-- encoders are assigned the type
+             ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
+        <encoder>
+            <!-- <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> -->
+            <pattern>%d{HH:mm:ss.SSS} %-5level %logger{36} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+    <logger name="org.thymeleaf" level="WARN"/>
+    <logger name="org.asciidoctor" level="INFO"/>
+    <logger name="org.eclipse" level="WARN"/>
+    <logger name="org.apache" level="WARN"/>
+    <logger name="org.jbake" level="INFO"/>
+
+    <!-- Strictly speaking, the level attribute is not necessary since -->
+    <!-- the level of the root logger is set to DEBUG by default.       -->
+    <root level="DEBUG">
+        <appender-ref ref="CONSOLE"/>
+    </root>
+
+</configuration>