refactor: remove some verbose logging

This commit is contained in:
Barış Soner Uşaklı
2022-03-22 18:29:37 -04:00
parent afe478b799
commit 9abe22a04b
2 changed files with 0 additions and 3 deletions

View File

@@ -357,8 +357,6 @@ Emailer.sendViaFallback = async (data) => {
// NodeMailer uses a combined "from"
data.from = `${data.from_name}<${data.from}>`;
delete data.from_name;
winston.verbose(`[emailer] Sending email to uid ${data.uid} (${data.to})`);
await Emailer.fallbackTransport.sendMail(data);
};