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 <[email protected]>
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:
'[email protected]', subject: messageSubject, to:
'[email protected]'
}
}