This is an automated email from the ASF dual-hosted git repository.
freeandnil pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4net.git
The following commit(s) were added to refs/heads/master by this push:
new afda7d21 #209 separate features into partial and pimp start page
afda7d21 is described below
commit afda7d21981a3688690836fc07b289a978e3aec5
Author: Jan Friedrich <[email protected]>
AuthorDate: Wed May 21 21:08:24 2025 +0200
#209 separate features into partial and pimp start page
---
src/site/antora/modules/ROOT/pages/features.adoc | 12 ++-------
src/site/antora/modules/ROOT/pages/index.adoc | 18 ++++++++++---
.../modules/ROOT/partials/log4net-features.adoc | 30 ++++++++++++++++++++++
3 files changed, 46 insertions(+), 14 deletions(-)
diff --git a/src/site/antora/modules/ROOT/pages/features.adoc
b/src/site/antora/modules/ROOT/pages/features.adoc
index 752cb918..b268c3d8 100644
--- a/src/site/antora/modules/ROOT/pages/features.adoc
+++ b/src/site/antora/modules/ROOT/pages/features.adoc
@@ -33,16 +33,8 @@ Using these loggers it is possible to selectively control
which log statements a
log4net is designed with two distinct goals in mind: speed and flexibility
[#featurelist]
-== Features
-* Support for multiple frameworks
-* Output to multiple logging targets
-* Hierarchical logging architecture
-* XML Configuration
-* Dynamic Configuration
-* Logging Context
-* Proven architecture
-* Modular and extensible design
-* High performance with flexibility
+== What does log4net offer?
+include::partial$log4net-features.adoc[]
[#frameworks]
== Support for multiple frameworks
diff --git a/src/site/antora/modules/ROOT/pages/index.adoc
b/src/site/antora/modules/ROOT/pages/index.adoc
index e9b78f86..a42728a2 100644
--- a/src/site/antora/modules/ROOT/pages/index.adoc
+++ b/src/site/antora/modules/ROOT/pages/index.adoc
@@ -19,9 +19,19 @@ limitations under the License.
= log4net
The Apache log4net library is a library to output log statements to a variety
of output targets.
-For more information on log4net see the xref:features.adoc[] document.
-[#github]
-== Github
+[#shortcuts]
+== Shortcuts
-https://github.com/apache/logging-log4net[log4net]
\ No newline at end of file
+- xref:manual/introduction.adoc[]
+- xref:manual/installation.adoc[How can I install log4net?]
+- xref:manual/configuration.adoc[How can I configure log4net?]
+- xref:release-notes.adoc[Where are the release notes?]
+- {logging-services-url}/support.html[**I need help!**]
+
+[#featurelist]
+== Features
+
+Below, we share some highlights from log4net xref:features.adoc[].
+
+include::partial$log4net-features.adoc[]
\ No newline at end of file
diff --git a/src/site/antora/modules/ROOT/partials/log4net-features.adoc
b/src/site/antora/modules/ROOT/partials/log4net-features.adoc
new file mode 100644
index 00000000..86fcf0bf
--- /dev/null
+++ b/src/site/antora/modules/ROOT/partials/log4net-features.adoc
@@ -0,0 +1,30 @@
+////
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+////
+
+Ready-to-Use::
+log4net includes a wide range of built-in modules for common and advanced use
cases.
+
+* xref:manual/configuration/appenders.adoc[] targeting files, network sockets,
databases, SMTP servers, etc.
+* xref:manual/configuration/layouts.adoc[] that can render Text, XML, JSON,
Syslog, etc. formatted outputs
+* xref:manual/configuration/filters.adoc[] based on log levels, regular
expressions, etc.
+
+Reliability::
+log4net is built with solid reliability in mind.
+It can automatically reload its configuration upon modification and will do so
without losing log events while reconfiguration occurs.
+
+Performance::
+When configured correctly, log4net can deliver excelling performance without
sacrificing reliability.
\ No newline at end of file