chore(emails): log smtp port in mail_helper.js (#2519)

This commit is contained in:
Beatriz Rizental 2018-07-12 06:29:58 -07:00 коммит произвёл Vlad Filippov
Родитель c020798213
Коммит 6dbf15a064
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -99,7 +99,15 @@ module.exports = (printLogs) => {
req.accept()
}
)
smtp.listen(config.smtp.port, config.smtp.host)
smtp.listen(config.smtp.port, function(err) {
if (! err) {
console.log(`Local SMTP server listening on port ${config.smtp.port}`)
} else {
console.log('Error starting SMTP server...')
console.log(err.message)
}
})
// HTTP half