以编程方式更改Log4j2中的日志级别

时间:2014-05-02 18:01:26

标签: java log4j2

我有兴趣以编程方式更改Log4j2中的日志级别。我试着查看他们的configuration documentation,但似乎没有任何东西。我也试着查看包裹:org.apache.logging.log4j.core.config,但其中没有任何内容看起来也很有帮助。

8 个答案:

答案 0 :(得分:108)

根据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);

Source

已编辑以反映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.

Here是LoggerConfig的javadoc。

答案 1 :(得分:22)

@slaadvak接受的答案对我Log4j2 2.8.2没有用。以下是。

要更改日志Level 普遍,请使用:

Configurator.setAllLevels(LogManager.getRootLogger().getName(), level);

要仅更改当前班级的日志Level,请使用:

Configurator.setLevel(LogManager.getLogger(CallingClass.class).getName(), level);

答案 2 :(得分:18)

如果要更改单个特定记录器级别(不是配置文件中配置的根记录器或记录器),可以执行以下操作:

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();
}

答案 3 :(得分:9)

我在这里找到了一个很好的答案: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);

答案 4 :(得分:4)

程序化方法相当具有侵入性。也许您应该检查Log4J2给出的JMX支持:

  1. 在应用程序启动时启用JMX端口:

    -Dcom.sun.management.jmxremote.port = [port_num]

  2. 在执行应用程序时,使用任何可用的JMX客户端(JVM在JAVA_HOME / bin / jconsole.exe中提供一个)。

  3. 在JConsole中查找“org.apache.logging.log4j2.Loggers”bean

  4. 最后更改记录器的级别

  5. 我最喜欢的是你不必修改代码或配置来管理它。这一切都是外在和透明的。

    更多信息:http://logging.apache.org/log4j/2.x/manual/jmx.html

答案 5 :(得分:2)

默认情况下,大多数答案都假定日志记录必须是附加的。但是,假设某些软件包生成了大量日志,并且您只想关闭该特定日志记录器的日志记录。这是我用来使其工作的代码

    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在classpath

<?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>

答案 6 :(得分:1)

我发现的一种不常见的方法是创建两个具有不同日志记录级别的单独文件。
例如。 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));

答案 7 :(得分:0)

对于仍在为此奋斗的那些人,我不得不将类加载器添加到“ getContext()”调用中:

  log.info("Modifying Log level! (maybe)");
  LoggerContext ctx = (LoggerContext) LogManager.getContext(this.getClass().getClassLoader(), false);
  Configuration config = ctx.getConfiguration();
  LoggerConfig loggerConfig = config.getLoggerConfig("com.cat.barrel");
  loggerConfig.setLevel(org.apache.logging.log4j.Level.TRACE);
  ctx.updateLoggers();

我在测试中添加了一个jvm参数: -Dlog4j.debug 。这会为log4j做一些详细的日志记录。我注意到最终的LogManager不是我正在使用的那个。 Bam,添加类加载器,您就可以开始比赛了。