web-dev-qa-db-ja.com

Log4j2のプログラムでログレベルを変更する

Log4j2のログレベルをプログラムで変更することに興味があります。私は彼らの 設定ドキュメント を見てみましたが、それは何も持っていないようでした。パッケージorg.Apache.logging.log4j.core.configも調べてみましたが、そこには何も役に立ちませんでした。

91
CorayThan

log4j2バージョン2.4 FAQに従って編集

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です。

114
slaadvak

@slaadvakによって受け入れられた答えは、 Log4j2 2.8.2 に対してはうまくいきませんでした。次のようにしました。

ログLeveluniversallyを変更するには:

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

現在のクラスのみのログLevelを変更するには、次を使用します。

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

1つの特定のロガーレベル(ルートロガーではなく、構成ファイルで構成されたロガー)を変更する場合は、次の操作を実行できます。

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();
}
18
Jörg Friedrich

私はここで良い答えを見つけました: 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);
10
alfred.schalk

プログラムによるアプローチはかなり邪魔です。おそらく、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. 最後にロガーのレベルを変更します

私が一番気に入っているのは、これを管理するためにコードや構成を変更する必要がないということです。すべて外部で透過的です。

詳細: http://logging.Apache.org/log4j/2.x/manual/jmx.html

4
Victor

デフォルトでは、ほとんどの答えは、ロギングが加算的でなければならないことを前提としています。しかし、いくつかのパッケージが大量のログを生成しており、その特定のロガーのみのロギングをオフにしたいとします。これは私がそれを機能させるために使用したコードです

    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>
2
hobgoblin

珍しい方法の1つは、ログレベルが異なる2つのファイルを作成することです。
例えば。 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));
1
dpp.2325