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

github-bot pushed a commit to branch 2.x-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/2.x-site-stg-out by this push:
     new a5472fc252 Add website content generated from 
`abbd774bfcd370d0830bcce67a18527e4c3506e9`
a5472fc252 is described below

commit a5472fc2527b9d1c106b336649fe18b40b9d21bc
Author: ASF Logging Services RM <[email protected]>
AuthorDate: Thu May 2 13:44:36 2024 +0000

    Add website content generated from 
`abbd774bfcd370d0830bcce67a18527e4c3506e9`
---
 5min.html             |  26 +++++-----
 plugin-reference.html |  12 ++---
 release-notes.html    |   2 +-
 sitemap.xml           | 136 +++++++++++++++++++++++++-------------------------
 4 files changed, 87 insertions(+), 89 deletions(-)

diff --git a/5min.html b/5min.html
index cc1bcd97bf..08ad16e6b6 100644
--- a/5min.html
+++ b/5min.html
@@ -499,7 +499,7 @@ Let&#8217;s try to walk through the most common ones.</p>
 <div class="ulist checklist">
 <ul class="checklist">
 <li>
-<p><i class="fa fa-square-o"></i> <code>Object#toString()</code> is redundant 
in arguments</p>
+<p><i class="fa fa-square-o"></i> Don&#8217;t use 
<code>Object#toString()</code> in arguments, it is redundant!</p>
 <div class="listingblock">
 <div class="content">
 <pre class="highlightjs highlight"><code class="language-java hljs" 
data-lang="java">/* BAD! */ LOGGER.info("userId: {}", 
userId.toString());</code></pre>
@@ -507,7 +507,7 @@ Let&#8217;s try to walk through the most common ones.</p>
 </div>
 </li>
 <li>
-<p><i class="fa fa-check-square-o"></i> Underlying message type and layout 
will deal with arguments</p>
+<p><i class="fa fa-check-square-o"></i> Underlying message type and layout 
will deal with arguments:</p>
 <div class="listingblock">
 <div class="content">
 <pre class="highlightjs highlight"><code class="language-java hljs" 
data-lang="java">/* GOOD */ LOGGER.info("userId: {}", userId);</code></pre>
@@ -519,14 +519,10 @@ Let&#8217;s try to walk through the most common ones.</p>
 </div>
 <div class="sect3">
 <h4 id="pitfall-exception"><a class="anchor" 
href="#pitfall-exception"></a>Pass exception as the last extra argument</h4>
-<div class="paragraph">
-<p>Using <code>Throwable#printStackTrace()</code> or 
<code>Throwable#getMessage()</code> while logging?
-Please, don&#8217;t!</p>
-</div>
 <div class="ulist checklist">
 <ul class="checklist">
 <li>
-<p><i class="fa fa-square-o"></i> Don&#8217;t call 
<code>Throwable#printStackTrace()</code>.
+<p><i class="fa fa-square-o"></i> Don&#8217;t call 
<code>Throwable#printStackTrace()</code>!
 This not only circumvents the logging, but can also leak sensitive 
information!</p>
 <div class="listingblock">
 <div class="content">
@@ -535,7 +531,7 @@ This not only circumvents the logging, but can also leak 
sensitive information!<
 </div>
 </li>
 <li>
-<p><i class="fa fa-square-o"></i> Don&#8217;t use 
<code>Throwable#getMessage()</code>.
+<p><i class="fa fa-square-o"></i> Don&#8217;t use 
<code>Throwable#getMessage()</code>!
 This prevents the log event from getting enriched with the exception.</p>
 <div class="listingblock">
 <div class="content">
@@ -545,7 +541,8 @@ This prevents the log event from getting enriched with the 
exception.</p>
 </div>
 </li>
 <li>
-<p><i class="fa fa-square-o"></i> This bloats the log message with duplicate 
exception message</p>
+<p><i class="fa fa-square-o"></i> Don&#8217;t provide both 
<code>Throwable#getMessage()</code> and <code>Throwable</code> itself!
+This bloats the log message with duplicate exception message.</p>
 <div class="listingblock">
 <div class="content">
 <pre class="highlightjs highlight"><code class="language-java hljs" 
data-lang="java">/* BAD! */ LOGGER.info("failed for user ID `{}`: {}", userId, 
exception.getMessage(), exception);</code></pre>
@@ -553,7 +550,7 @@ This prevents the log event from getting enriched with the 
exception.</p>
 </div>
 </li>
 <li>
-<p><i class="fa fa-check-square-o"></i> Pass exception as the last extra 
argument</p>
+<p><i class="fa fa-check-square-o"></i> Pass exception as the last extra 
argument:</p>
 <div class="listingblock">
 <div class="content">
 <pre class="highlightjs highlight"><code class="language-java hljs" 
data-lang="java">/* GOOD */ LOGGER.error("failed", exception);
@@ -572,8 +569,9 @@ This prevents the log event from getting enriched with the 
exception.</p>
 <div class="ulist checklist">
 <ul class="checklist">
 <li>
-<p><i class="fa fa-square-o"></i> Circumvents the handling of arguments by 
message type and layout.
-More importantly, this code is prone to attacks!
+<p><i class="fa fa-square-o"></i> Don&#8217;t use <code>String</code> 
concatenation to format arguments!
+This circumvents the handling of arguments by message type and layout.
+More importantly, <strong>this approach is prone to attacks!</strong>
 Imagine <code>userId</code> being provided by user with the following content:
 <code>placeholders for non-existing args to trigger failure: {} {} 
{dangerousLookup}</code></p>
 <div class="listingblock">
@@ -643,7 +641,7 @@ Please skip to the <a href="#config-lib">How do I configure 
Log4j for my <strong
 
   &lt;dependency&gt;
 
-    &lt;!-- The logging implementation (i.e., Log4j Core) --&gt;
+    &lt;!-- Logging implementation (Log4j Core) --&gt;
     &lt;dependency&gt;
       &lt;groupId&gt;org.apache.logging.log4j&lt;/groupId&gt;
       &lt;artifactId&gt;log4j-core&lt;/artifactId&gt;
@@ -928,7 +926,7 @@ Save the following XML document to 
<code>src/<strong>test</strong>/resources/log
 <dl>
 <dt class="hdlist1">Installation</dt>
 <dd>
-<p>While shared dependency management snippets should get you going, it can 
also be challenging depending on your use case.
+<p>While shared dependency management snippets should get you going, your case 
might necessitate a more intricate setup.
 Are you dealing with a Spring Boot application?
 Is it running in a Java EE container?
 Do you need to take into account other logging APIs such as JUL, JPL, JCL, 
etc.?
diff --git a/plugin-reference.html b/plugin-reference.html
index a0c90e422a..30b2831628 100644
--- a/plugin-reference.html
+++ b/plugin-reference.html
@@ -15842,10 +15842,10 @@ Supports Lookup expressions.</p>
 <td class="tableblock halign-left valign-top"><p 
class="tableblock"><code>boolean?</code></p></td>
 <td class="tableblock halign-left valign-top"></td>
 <td class="tableblock halign-left valign-top"><div class="content"><div 
class="paragraph">
-<p>If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".</p>
+<p>If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".</p>
 </div>
 <div class="paragraph">
-<p>If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".</p>
+<p>If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".</p>
 </div></div></td>
 </tr>
 <tr>
@@ -17141,10 +17141,10 @@ Supports Lookup expressions.</p>
 <td class="tableblock halign-left valign-top"><p 
class="tableblock"><code>boolean?</code></p></td>
 <td class="tableblock halign-left valign-top"></td>
 <td class="tableblock halign-left valign-top"><div class="content"><div 
class="paragraph">
-<p>If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".</p>
+<p>If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".</p>
 </div>
 <div class="paragraph">
-<p>If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".</p>
+<p>If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".</p>
 </div></div></td>
 </tr>
 <tr>
@@ -17340,10 +17340,10 @@ Supports Lookup expressions.</p>
 <td class="tableblock halign-left valign-top"><p 
class="tableblock"><code>boolean?</code></p></td>
 <td class="tableblock halign-left valign-top"></td>
 <td class="tableblock halign-left valign-top"><div class="content"><div 
class="paragraph">
-<p>If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".</p>
+<p>If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".</p>
 </div>
 <div class="paragraph">
-<p>If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".</p>
+<p>If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".</p>
 </div></div></td>
 </tr>
 <tr>
diff --git a/release-notes.html b/release-notes.html
index ba5ad03041..3661b952ed 100644
--- a/release-notes.html
+++ b/release-notes.html
@@ -409,7 +409,7 @@
 <p>Update <code>actions/upload-artifact</code> to version <code>4.3.2</code> 
(<a href="https://github.com/apache/logging-log4j2/pull/2490";>2490</a>)</p>
 </li>
 <li>
-<p>Update <code>co.elastic.clients:elasticsearch-java</code> to version 
<code>8.13.2</code> (<a 
href="https://github.com/apache/logging-log4j2/pull/2458";>2458</a>)</p>
+<p>Update <code>co.elastic.clients:elasticsearch-java</code> to version 
<code>8.13.3</code> (<a 
href="https://github.com/apache/logging-log4j2/pull/2557";>2557</a>)</p>
 </li>
 <li>
 <p>Update <code>com.fasterxml.jackson:jackson-bom</code> to version 
<code>2.17.0</code> (<a 
href="https://github.com/apache/logging-log4j2/pull/2372";>2372</a>)</p>
diff --git a/sitemap.xml b/sitemap.xml
index 5876f0011a..d2991f4220 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2,274 +2,274 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9";>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/5min.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/articles.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/development.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/download.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/faq.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/index.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/javadoc.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-1.2-api.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-api.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-appserver.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-cassandra.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-couchdb.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-docker.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-flume-ng.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-iostreams.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-jakarta-web.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-jcl.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-jmx-gui.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-jpl.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-jul.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-mongodb3.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-mongodb4.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-slf4j-impl.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-slf4j2-impl.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-spring-boot.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 
<loc>https://logging.apache.org/log4j/2.x/log4j-spring-cloud-config-client.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-spring-cloud-config.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-taglib.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-to-jul.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-to-slf4j.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/log4j-web.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/api-separation.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/api.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/appenders.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/architecture.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/async.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/cloud.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/compatibility.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/configuration.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/customconfig.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/customloglevels.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/eventlogging.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/extending.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/filters.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/flowtracing.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/garbagefree.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/index.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/installation.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/jmx.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 
<loc>https://logging.apache.org/log4j/2.x/manual/json-template-layout.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/layouts.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/logbuilder.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/logsep.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/lookups.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/markers.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/messages.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/migration.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/performance.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/plugins.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/resource-logger.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/scoped-context.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/thread-context.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/usage.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/manual/webapp.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/plugin-reference.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/release-notes.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/runtime-dependencies.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 <url>
 <loc>https://logging.apache.org/log4j/2.x/thanks.html</loc>
-<lastmod>2024-05-02T07:39:03.919Z</lastmod>
+<lastmod>2024-05-02T13:44:14.166Z</lastmod>
 </url>
 </urlset>

Reply via email to