From 16840503b7fd719fcd1c0e84464812406a30b935 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Thu, 18 Feb 2021 20:11:29 +0100 Subject: [PATCH] main: remove logging --- main.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/main.js b/main.js index 382cec33..feadfce5 100644 --- a/main.js +++ b/main.js @@ -55,8 +55,6 @@ async function main() { } }) - console.log(transport.options) - const info = await transport.sendMail({ from: getFrom(from, username), to: to, @@ -67,8 +65,6 @@ async function main() { html: contentType == "text/html" ? getBody(body, convertMarkdown) : undefined, attachments: attachments ? attachments.split(',').map(f => ({ path: f.trim() })) : undefined }) - - console.log(info) } catch (error) { core.setFailed(error.message) }