我正在尝试配置log4j2 PatterLayout,以通过除去前两个元素和最后一个元素之外的所有元素来缩短记录器名称。例如,
org.springframework.boot.actuate.endpoint.web.EndpointLinksResolver
应该打印为
org.springframework.~.~.~.~.EndpointLinksResolver
文档https://logging.apache.org/log4j/2.x/manual/layouts.html#Patterns建议使用类似%c{1.1.~.~}
的字词,但这似乎最多只能使用9个字符。
使用%c{9.9.~}
会导致
org.springfra.~.~.~.~.EndpointLinksResolver
关闭,但时间不够长。
使用%c{10.10.~}
会导致
o0.s0.~.~.~.~.EndpointLinksResolver
使用%c{99.99.~}
会导致
org.springfra9.~.~.~.~.EndpointLinksResolver
我应该使用哪种转换模式以获得所需的结果?
这是我的完整log4j2.xml
<?xml version="1.0" encoding="UTF-8"?>
<configuration status="DEBUG">
<Properties>
<Property name="filePrefix">myfile</Property>
</Properties>
<Appenders>
<RollingFile name="RollingFile" fileName="${filePrefix}.log"
filePattern="${filePrefix}-%d{yyyy-MM-dd}-%i.log" immediateFlush="true">
<PatternLayout>
<pattern>%d [%p] %c{9.9.~} [%t]: %m%n</pattern>
</PatternLayout>
<Policies>
<SizeBasedTriggeringPolicy size="10 MB" />
</Policies>
<DefaultRolloverStrategy max="10" />
</RollingFile>
</Appenders>
<Loggers>
<Root level="info" additivity="false">
<appender-ref ref="Console" level="debug"/>
<appender-ref ref="RollingFile"/>
</Root>
</Loggers>
</configuration>