Answers:
根据log4j2 2.4版常见问题进行编辑
您可以使用Log4j Core中的Configurator类设置记录器的级别。但是请注意,Configurator类不是公共API的一部分。
// org.apache.logging.log4j.core.config.Configurator;
Configurator.setLevel("com.example.Foo", Level.DEBUG);
// You can also set the root logger:
Configurator.setRootLevel(Level.DEBUG);
编辑以反映Log4j2 2.0.2版中引入的API中的更改
如果您希望更改根记录器级别,请执行以下操作:
LoggerContext ctx = (LoggerContext) LogManager.getContext(false);
Configuration config = ctx.getConfiguration();
LoggerConfig loggerConfig = config.getLoggerConfig(LogManager.ROOT_LOGGER_NAME);
loggerConfig.setLevel(level);
ctx.updateLoggers(); // This causes all Loggers to refetch information from their LoggerConfig.
这是LoggerConfig的Javadoc。
@slaadvak接受的答案不适用于Log4j2 2.8.2。以下做了。
要Level
普遍更改日志,请使用:
Configurator.setAllLevels(LogManager.getRootLogger().getName(), level);
要Level
仅更改当前类的日志,请使用:
Configurator.setLevel(LogManager.getLogger(CallingClass.class).getName(), level);
如果要更改单个特定的记录器级别(而不是配置文件中配置的一个或多个根记录器),可以执行以下操作:
public static void setLevel(Logger logger, Level level) {
final LoggerContext ctx = (LoggerContext) LogManager.getContext(false);
final Configuration config = ctx.getConfiguration();
LoggerConfig loggerConfig = config.getLoggerConfig(logger.getName());
LoggerConfig specificConfig = loggerConfig;
// We need a specific configuration for this logger,
// otherwise we would change the level of all other loggers
// having the original configuration as parent as well
if (!loggerConfig.getName().equals(logger.getName())) {
specificConfig = new LoggerConfig(logger.getName(), level, true);
specificConfig.setParent(loggerConfig);
config.addLogger(logger.getName(), specificConfig);
}
specificConfig.setLevel(level);
ctx.updateLoggers();
}
setLevel(logger, Level.ERROR);
并且logger.debug语句仍然打印。我的log4j2.xml文件位于pastebin.com/fcbV2mTW
我在这里找到了一个很好的答案:https : //garygregory.wordpress.com/2016/01/11/changing-log-levels-in-log4j2/
您可以使用org.apache.logging.log4j.core.config.Configurator设置特定记录器的级别。
Logger logger = LogManager.getLogger(Test.class);
Configurator.setLevel(logger.getName(), Level.DEBUG);
程序化方法颇具侵入性。也许您应该检查Log4J2提供的JMX支持:
在应用程序启动中启用JMX端口:
-Dcom.sun.management.jmxremote.port = [port_num]
执行应用程序时,请使用任何可用的JMX客户端(JVM在JAVA_HOME / bin / jconsole.exe中提供了一个)。
在JConsole中,查找“ org.apache.logging.log4j2.Loggers” bean
最后更改记录器的级别
我最喜欢的一件事是,您无需修改代码或配置即可进行管理。这一切都是外部的和透明的。
默认情况下,大多数答案都假定日志记录必须是累加的。但是请说某个软件包正在生成大量日志,并且您只想关闭该特定记录器的日志记录。这是我用来使其工作的代码
public class LogConfigManager {
public void setLogLevel(String loggerName, String level) {
Level newLevel = Level.valueOf(level);
LoggerContext logContext = (LoggerContext) LogManager.getContext(false);
Configuration configuration = logContext.getConfiguration();
LoggerConfig loggerConfig = configuration.getLoggerConfig(loggerName);
// getLoggerConfig("a.b.c") could return logger for "a.b" if there is no logger for "a.b.c"
if (loggerConfig.getName().equalsIgnoreCase(loggerName)) {
loggerConfig.setLevel(newLevel);
log.info("Changed logger level for {} to {} ", loggerName, newLevel);
} else {
// create a new config.
loggerConfig = new LoggerConfig(loggerName, newLevel, false);
log.info("Adding config for: {} with level: {}", loggerConfig, newLevel);
configuration.addLogger(loggerName, loggerConfig);
LoggerConfig parentConfig = loggerConfig.getParent();
do {
for (Map.Entry<String, Appender> entry : parentConfig.getAppenders().entrySet()) {
loggerConfig.addAppender(entry.getValue(), null, null);
}
parentConfig = parentConfig.getParent();
} while (null != parentConfig && parentConfig.isAdditive());
}
logContext.updateLoggers();
}
}
相同的测试用例
public class LogConfigManagerTest {
@Test
public void testLogChange() throws IOException {
LogConfigManager logConfigManager = new LogConfigManager();
File file = new File("logs/server.log");
Files.write(file.toPath(), new byte[0], StandardOpenOption.TRUNCATE_EXISTING);
Logger logger = LoggerFactory.getLogger("a.b.c");
logger.debug("Marvel-1");
logConfigManager.setLogLevel("a.b.c", "debug");
logger.debug("DC-1");
// Parent logger level should remain same
LoggerFactory.getLogger("a.b").debug("Marvel-2");
logConfigManager.setLogLevel("a.b.c", "info");
logger.debug("Marvel-3");
// Flush everything
LogManager.shutdown();
String content = Files.readAllLines(file.toPath()).stream().reduce((s1, s2) -> s1 + "\t" + s2).orElse(null);
Assert.assertEquals(content, "DC-1");
}
}
假设以下log4j2.xml在类路径中
<?xml version="1.0" encoding="UTF-8"?>
<Configuration xmlns="http://logging.apache.org/log4j/2.0/config">
<Appenders>
<File name="FILE" fileName="logs/server.log" append="true">
<PatternLayout pattern="%m%n"/>
</File>
<Console name="STDOUT" target="SYSTEM_OUT">
<PatternLayout pattern="%m%n"/>
</Console>
</Appenders>
<Loggers>
<AsyncLogger name="a.b" level="info">
<AppenderRef ref="STDOUT"/>
<AppenderRef ref="FILE"/>
</AsyncLogger>
<AsyncRoot level="info">
<AppenderRef ref="STDOUT"/>
</AsyncRoot>
</Loggers>
</Configuration>
我发现一种不寻常的方法是创建两个具有不同日志记录级别的单独文件。
例如。log4j2.xml和log4j-debug.xml现在从此文件更改配置。
样例代码:
ConfigurationFactory configFactory = XmlConfigurationFactory.getInstance();
ConfigurationFactory.setConfigurationFactory(configFactory);
LoggerContext ctx = (LoggerContext) LogManager.getContext(false);
ClassLoader classloader = Thread.currentThread().getContextClassLoader();
InputStream inputStream = classloader.getResourceAsStream(logFileName);
ConfigurationSource configurationSource = new ConfigurationSource(inputStream);
ctx.start(configFactory.getConfiguration(ctx, configurationSource));