所有 Apache 日志服务项目的 XML 模式都发布在此目录中。此目录的规范名称为 https://logging.apache.org/xml/ns
。
重要
|
在您的应用程序中使用这些模式时,需要了解此处使用的 XSD 版本方案的两个重要事项
|
Log4j 模式
发布时间 | 文件名 | 描述 |
---|---|---|
2024-03-19 |
随 Log4j |
|
N/A |
指向主要版本 |
|
2024-03-19 |
N/A |
|
N/A |
指向主要版本 |
<?xml version="1.0" encoding="UTF-8"?>
<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">
<AppenderRef ref="Console"/>
</Root>
</Loggers>
</Configuration>
Log4j 变更日志模式
Log4j 变更日志 是一个用于维护变更日志的工具。它专为 Apache Log4j 设计,但可用于任何 Java 项目。
发布时间 | 文件名 | 描述 |
---|---|---|
2023-02-03 |
随 Log4j Tools |
|
2023-03-17 |
随 Log4j Tools |
|
2023-09-28 |
随 Log4j Tools |
|
2023-12-13 |
随 Log4j Tools |
|
2024-03-15 |
计划随 Log4j Tools |
|
N/A |
指向主要版本 |
<?xml version="1.0" encoding="UTF-8"?>
<entry 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-changelog-0.xsd"
type="updated">
<issue id="2370" link="https://github.com/apache/logging-log4j2/pull/2370"/>
<description format="asciidoc">Update `actions/checkout` to version `4.1.2`</description>
</entry>
log4j2.xml
进行配置。