diff --git a/routes/public.js b/routes/public.js
index 00a243b84d2cb6f50ac4f7f53064e41427bdd95a..e6cd132aafd32c7f576bf6c5cf43b368cc232aca 100644
--- a/routes/public.js
+++ b/routes/public.js
@@ -80,7 +80,7 @@ module.exports = function (app, config, lang) {
                   mailer.options.html = emailContent;
                   mailer.transport.sendMail(mailer.options, function(err) {
                     if (err) {
-                      console.log('cannot send email')
+                      console.error('cannot send email')
                       throw err
                     }
                   })
@@ -278,11 +278,12 @@ module.exports = function (app, config, lang) {
               mailer.options.subject = emailSubject;
               mailer.options.text = emailContent;
               mailer.transport.sendMail(mailer.options, function(err) {
-                  done(err, 'done');
-                });
+                done(err, 'done');
+              });
             }
         ], function(err) {
           if (err) {
+            console.error(err)
             res.flash('error', 'Ein Fehler ist aufgetreten. Bitte versuchen Sie es erneut.');
           }
           else {