From 8ba90a0c5114635f1b363a68b6af8df49f504206 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Mon, 6 Aug 2018 09:41:13 +0200 Subject: [PATCH] SONAR-11077 display email in TRACE level --- .../server/notification/email/EmailNotificationChannel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.39.5