aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-server-common
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2018-08-06 09:41:13 +0200
committerSonarTech <sonartech@sonarsource.com>2018-08-07 20:21:21 +0200
commit8ba90a0c5114635f1b363a68b6af8df49f504206 (patch)
tree617e7e41aa5a38cba9e7444967ea49a4f8d884e5 /server/sonar-server-common
parent1129f4e0968dd57760f1f8fd18d30b02575fff88 (diff)
downloadsonarqube-8ba90a0c5114635f1b363a68b6af8df49f504206.tar.gz
sonarqube-8ba90a0c5114635f1b363a68b6af8df49f504206.zip
SONAR-11077 display email in TRACE level
Diffstat (limited to 'server/sonar-server-common')
-rw-r--r--server/sonar-server-common/src/main/java/org/sonar/server/notification/email/EmailNotificationChannel.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-server-common/src/main/java/org/sonar/server/notification/email/EmailNotificationChannel.java b/server/sonar-server-common/src/main/java/org/sonar/server/notification/email/EmailNotificationChannel.java
index d9e68931cea..99aeff310c6 100644
--- a/server/sonar-server-common/src/main/java/org/sonar/server/notification/email/EmailNotificationChannel.java
+++ b/server/sonar-server-common/src/main/java/org/sonar/server/notification/email/EmailNotificationChannel.java
@@ -154,7 +154,7 @@ public class EmailNotificationChannel extends NotificationChannel {
Thread.currentThread().setContextClassLoader(getClass().getClassLoader());
try {
- LOG.debug("Sending email: {}", emailMessage);
+ LOG.trace("Sending email: {}", emailMessage);
String host = null;
try {
host = new URL(configuration.getServerBaseURL()).getHost();