diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-07-02 20:13:22 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-07-02 21:29:42 +0200 |
commit | 29ae9b385a7bf720ae89637582c862df43b7fd0d (patch) | |
tree | c42098461a73b77d0fa8f2d91b09dac10250efdc /server/sonar-server | |
parent | 25ff4124dbb2e2e5455fe94a4726c8b4d841f860 (diff) | |
download | sonarqube-29ae9b385a7bf720ae89637582c862df43b7fd0d.tar.gz sonarqube-29ae9b385a7bf720ae89637582c862df43b7fd0d.zip |
SONAR-6588 drop db connection from batch
Diffstat (limited to 'server/sonar-server')
-rw-r--r-- | server/sonar-server/src/main/java/org/sonar/server/app/WebLogging.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/server/sonar-server/src/main/java/org/sonar/server/app/WebLogging.java b/server/sonar-server/src/main/java/org/sonar/server/app/WebLogging.java index 2e1e88c499a..a3887f1bd59 100644 --- a/server/sonar-server/src/main/java/org/sonar/server/app/WebLogging.java +++ b/server/sonar-server/src/main/java/org/sonar/server/app/WebLogging.java @@ -65,9 +65,6 @@ class WebLogging { private void configureLevels(LoggerContext ctx, Props props) { // override level of some loggers helper.configureLogger(ctx, "rails", Level.WARN); - helper.configureLogger(ctx, "org.hibernate.cache.ReadWriteCache", Level.ERROR); - helper.configureLogger(ctx, "org.hibernate", Level.WARN); - helper.configureLogger(ctx, "org.hibernate.SQL", Level.WARN); helper.configureLogger(ctx, "org.apache.ibatis", Level.WARN); helper.configureLogger(ctx, "java.sql", Level.WARN); helper.configureLogger(ctx, "java.sql.ResultSet", Level.WARN); |