From 4f2b2ccecd27fed959a41fb28991f54c1c67540d Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Thu, 30 Oct 2014 23:30:46 -0300 Subject: [PATCH] fix log message --- plugins/emailstore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/emailstore.js b/plugins/emailstore.js index d0e32821..9aaea3b4 100644 --- a/plugins/emailstore.js +++ b/plugins/emailstore.js @@ -170,7 +170,7 @@ emailPlugin.sendVerificationEmail = function (email, secret) { if (err) { logger.error('An error occurred when trying to send email to ' + email, err); } else { - logger.error('Message sent: ' + info.response); + logger.error('Message sent: ', info); } }); });