如何在 log4j.properties 中配置特定包

how to configure specific package in log4j.properties

我需要为特定 类 配置 log4j。有谁知道我们如何使用 log4j.properties.

相反,我们可以在 log4j.xml

中使用 class/package 添加记录器
<logger name="org.springframework.security">
    <level value="info" />
    <appender-ref ref="console" />
</logger>

我想要 log4j.properties 中的等效配置?

模式是log4j.logger.<class or package name>=<level>[, appender]

log4j.logger.org.springframework.security=INFO
log4j.logger.org.springframework.security=INFO, console