diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2019-03-27 17:47:07 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-04-01 20:21:05 +0200 |
commit | 692589aee8672fd1d94f5ff2fe34f4021199396e (patch) | |
tree | 9653f37953db5fd787eb678ea140d68644816797 /server/sonar-server-common | |
parent | d656879c8da4615445ea827f0c120148c38c2c20 (diff) | |
download | sonarqube-692589aee8672fd1d94f5ff2fe34f4021199396e.tar.gz sonarqube-692589aee8672fd1d94f5ff2fe34f4021199396e.zip |
SONAR-10766 Do not display FOP INFO logs when generating a PDF report
Diffstat (limited to 'server/sonar-server-common')
-rw-r--r-- | server/sonar-server-common/src/main/java/org/sonar/server/log/ServerProcessLogging.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/sonar-server-common/src/main/java/org/sonar/server/log/ServerProcessLogging.java b/server/sonar-server-common/src/main/java/org/sonar/server/log/ServerProcessLogging.java index aca1068ab91..33f3a585331 100644 --- a/server/sonar-server-common/src/main/java/org/sonar/server/log/ServerProcessLogging.java +++ b/server/sonar-server-common/src/main/java/org/sonar/server/log/ServerProcessLogging.java @@ -83,6 +83,7 @@ public abstract class ServerProcessLogging { builder.immutableLevel("org.postgresql.jdbc.PgConnection", Level.INFO); // Apache FOP builder.immutableLevel("org.apache.fop", Level.INFO); + builder.immutableLevel("org.apache.fop.apps.FOUserAgent", Level.WARN); builder.immutableLevel("org.apache.xmlgraphics.image.loader.spi.ImageImplRegistry", Level.INFO); // Hazelcast builder.immutableLevel("com.hazelcast.internal.cluster.impl.ClusterHeartbeatManager", Level.INFO); |