]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-11077 remove some Netty noisy DEBUG logs
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Fri, 3 Aug 2018 14:25:16 +0000 (16:25 +0200)
committerSonarTech <sonartech@sonarsource.com>
Tue, 7 Aug 2018 18:21:21 +0000 (20:21 +0200)
server/sonar-server-common/src/main/java/org/sonar/server/log/ServerProcessLogging.java

index 511c0fe94ca036a7d6f1af6df9e51767978d518c..3318b25ebaaa22a9e3161d7ff1f003b480935ed2 100644 (file)
@@ -94,6 +94,9 @@ public abstract class ServerProcessLogging {
     builder.immutableLevel("com.hazelcast.internal.partition.operation.PartitionStateOperation", Level.INFO);
     builder.immutableLevel("com.hazelcast.replicatedmap.impl.operation.RequestMapDataOperation", Level.INFO);
     builder.immutableLevel("com.hazelcast.replicatedmap.impl.operation.SyncReplicatedMapDataOperation", Level.INFO);
+    // Netty (used by Elasticsearch)
+    builder.immutableLevel("io.netty.buffer.PoolThreadCache", Level.INFO);
+
     extendLogLevelConfiguration(builder);
 
     return builder.build();