Remove useless logs displaying smtp credentials
parent
9933900395
commit
a4d7ade791
|
@ -20,12 +20,10 @@ export class SmtpNotifier extends AbstractEmailNotifier {
|
||||||
pass: options.password
|
pass: options.password
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
console.log(smtpOptions);
|
|
||||||
const transporter = nodemailer.createTransport(smtpOptions);
|
const transporter = nodemailer.createTransport(smtpOptions);
|
||||||
this.transporter = BluebirdPromise.promisifyAll(transporter);
|
this.transporter = BluebirdPromise.promisifyAll(transporter);
|
||||||
|
|
||||||
// verify connection configuration
|
// verify connection configuration
|
||||||
console.log("Checking SMTP server connection.");
|
|
||||||
transporter.verify(function (error, success) {
|
transporter.verify(function (error, success) {
|
||||||
if (error) {
|
if (error) {
|
||||||
throw new Error("Unable to connect to SMTP server. \
|
throw new Error("Unable to connect to SMTP server. \
|
||||||
|
|
Loading…
Reference in New Issue