This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit d183bf5f39a75eb81ad651449e2b46a64717fe2d Author: Jean Couteau <jean.couteau@gmail.com> Date: Mon Mar 12 15:37:24 2018 +0100 Add info on error log to ease debug --- .../main/java/com/franciaflex/faxtomail/web/job/MailFilterJob.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/faxtomail-ui-web/src/main/java/com/franciaflex/faxtomail/web/job/MailFilterJob.java b/faxtomail-ui-web/src/main/java/com/franciaflex/faxtomail/web/job/MailFilterJob.java index 6877b591..aa3520fb 100644 --- a/faxtomail-ui-web/src/main/java/com/franciaflex/faxtomail/web/job/MailFilterJob.java +++ b/faxtomail-ui-web/src/main/java/com/franciaflex/faxtomail/web/job/MailFilterJob.java @@ -513,7 +513,8 @@ public class MailFilterJob extends AbstractFaxToMailJob { deleteMail(message); } catch (Exception e) { - log.error("Error while reading the email", e); + log.error("Error while reading the email from " + + emailAccount.getLogin() + "@" + emailAccount.getHost(), e); } } if (log.isDebugEnabled()) { @@ -521,7 +522,8 @@ public class MailFilterJob extends AbstractFaxToMailJob { } } catch (Exception e) { - log.error("Error while reading the emails", e); + log.error("Error while reading the emails from " + + emailAccount.getLogin() + "@" + emailAccount.getHost(), e); } // usefull log info (do not remove) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.