回答:
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です。
@slaadvakが承認した回答がLog4j2 2.8.2で機能しませんでした。。次はしました。
Level
普遍的にログを変更するには:
Configurator.setAllLevels(LogManager.getRootLogger().getName(), level);
Level
現在のクラスのみのログを変更するには、以下を使用します。
Configurator.setLevel(LogManager.getLogger(CallingClass.class).getName(), level);
単一の特定のロガーレベルを変更する場合(構成ファイルで構成されている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();
}
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に1つを提供します)のいずれかを使用します。
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>
私が見つけた珍しい方法の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));