You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2019/08/02 22:45:18 UTC

[maven-jenkins-env] branch master updated: excluded message body from the log message

This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-jenkins-env.git


The following commit(s) were added to refs/heads/master by this push:
     new f00fe66  excluded message body from the log message
f00fe66 is described below

commit f00fe6651e65bea635e410000223fc3604be939e
Author: tibordigana <ti...@apache.org>
AuthorDate: Sat Aug 3 00:45:00 2019 +0200

    excluded message body from the log message
---
 vars/jenkinsNotify.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 @@ def call(Map params = [:]) {
     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'
     }
 }