excluded message body from the log message
diff --git a/vars/jenkinsNotify.groovy b/vars/jenkinsNotify.groovy
index 76d4168..3ad6cf1 100644
--- a/vars/jenkinsNotify.groovy
+++ b/vars/jenkinsNotify.groovy
@@ -106,7 +106,7 @@
     if (authors.contains('github')) sendMail = false
     if (sendMail) {
         messageBody = messageBody + '\n${FAILED_TESTS}\n' + messageTail
-        println("Sending email with message body \"${messageBody}\"")
+        println("Sending email ...")
         emailext body: messageBody, recipientProviders: providers, replyTo: 'dev@maven.apache.org', subject: messageSubject, to: 'notifications@maven.apache.org'
     }
 }