branch develop updated (a795d8c8 -> d183bf5f)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git from a795d8c8 [jgitflow-maven-plugin]updating poms for 2.4.7-SNAPSHOT development new d183bf5f Add info on error log to ease debug The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: 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 Summary of changes: .../main/java/com/franciaflex/faxtomail/web/job/MailFilterJob.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
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>.
participants (1)
-
codelutin.com scm