Skip to content

Commit

Permalink
main: remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidd6 authored Feb 18, 2021
1 parent 8be2cea commit 1684050
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ async function main() {
}
})

console.log(transport.options)

const info = await transport.sendMail({
from: getFrom(from, username),
to: to,
Expand All @@ -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)
}
Expand Down

0 comments on commit 1684050

Please sign in to comment.