]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-11077 disable some FOP, Netty and Hazelcast DEBUG logs
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Fri, 3 Aug 2018 08:22:30 +0000 (10:22 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Sun, 5 Aug 2018 21:17:30 +0000 (23:17 +0200)
server/sonar-server/src/main/java/org/sonar/server/app/ServerProcessLogging.java

index 1f66e8af3dba3c7fef21f571d6e8c9ba55b9d276..1970b887d9d5a52f9b7004bade4aceb7e29ad882 100644 (file)
@@ -81,6 +81,18 @@ public abstract class ServerProcessLogging {
     builder.immutableLevel("org.apache.tomcat", Level.INFO);
     builder.immutableLevel("org.postgresql.core.v3.QueryExecutorImpl", Level.INFO);
     builder.immutableLevel("org.postgresql.jdbc.PgConnection", Level.INFO);
+    // Apache FOP
+    builder.immutableLevel("org.apache.fop", Level.INFO);
+    builder.immutableLevel("org.apache.xmlgraphics.image.loader.spi.ImageImplRegistry", Level.INFO);
+    // Hazelcast
+    builder.immutableLevel("com.hazelcast.internal.cluster.impl.ClusterHeartbeatManager", Level.INFO);
+    builder.immutableLevel("com.hazelcast.internal.cluster.impl.operations.HeartbeatOperation", Level.INFO);
+    builder.immutableLevel("com.hazelcast.internal.partition.InternalPartitionService", Level.INFO);
+    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);