This is an automated email from the ASF dual-hosted git repository.
git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/logging-site.git
The following commit(s) were added to refs/heads/asf-staging by this push:
new 5883bf67 Automatic Site Publish by Buildbot
5883bf67 is described below
commit 5883bf67f0af797f95076028d1376f6bd2512824
Author: buildbot <[email protected]>
AuthorDate: Thu May 9 17:42:36 2024 +0000
Automatic Site Publish by Buildbot
---
content/feed.xml | 2 +-
content/xml/ns/index.html | 20 +++++++++-----------
2 files changed, 10 insertions(+), 12 deletions(-)
diff --git a/content/feed.xml b/content/feed.xml
index b63e2aae..d7669260 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?><feed
xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/"
version="4.2.2">Jekyll</generator><link href="/feed.xml" rel="self"
type="application/atom+xml" /><link href="/" rel="alternate" type="text/html"
/><updated>2024-05-09T17:30:11+00:00</updated><id>/feed.xml</id><title
type="html">Apache Software Foundation - Logging
Services</title><subtitle>Write an awesome description for your new site here.
You can edit this line in _ [...]
+<?xml version="1.0" encoding="utf-8"?><feed
xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/"
version="4.2.2">Jekyll</generator><link href="/feed.xml" rel="self"
type="application/atom+xml" /><link href="/" rel="alternate" type="text/html"
/><updated>2024-05-09T17:42:35+00:00</updated><id>/feed.xml</id><title
type="html">Apache Software Foundation - Logging
Services</title><subtitle>Write an awesome description for your new site here.
You can edit this line in _ [...]
<p>Today, December 17, 2023 marks a significant milestone for the Apache
Logging Services project,
as we celebrate 20 years since the inception of Log4j 1.
diff --git a/content/xml/ns/index.html b/content/xml/ns/index.html
index 4179deb1..68a54064 100644
--- a/content/xml/ns/index.html
+++ b/content/xml/ns/index.html
@@ -152,21 +152,19 @@ Following schemas model the Log4j runtime configuration,
i.e., <code>log4j2.xml<
<div class="title">Example Log4j 2 schema usage</div>
<div class="content">
<pre class="highlight"><code class="language-xml" data-lang="xml"><?xml
version="1.0" encoding="UTF-8"?>
-<Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="https://logging.apache.org/xml/ns"
- xsi:schemaLocation="
- https://logging.apache.org/xml/ns
-
https://logging.apache.org/xml/ns/log4j-config-2.xsd">
- <appenders>
+<Configuration xmlns="https://logging.apache.org/xml/ns"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="https://logging.apache.org/xml/ns
https://logging.apache.org/xml/ns/log4j-config-2.xsd">
+ <Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d [%t] %p %c - %m%n"/>
</Console>
- </appenders>
- <loggers>
- <root level="WARN">
+ </Appenders>
+ <Loggers>
+ <Root level="WARN">
<AppenderRef ref="Console"/>
- </root>
- </loggers>
+ </Root>
+ </Loggers>
</Configuration></code></pre>
</div>
</div>