branch develop updated (947ac635 -> 9d25e1d9)
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 947ac635 - fixes #10094 : Mail bloquant - Libération des ressources ! new 9d25e1d9 Clean logs 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 9d25e1d96caaba883a83ef7708d18775e6ba3b9e Author: jcouteau <couteau@codelutin.com> Date: Tue Sep 25 14:41:19 2018 +0200 Clean logs Summary of changes: .../com/franciaflex/faxtomail/ui/swing/content/MainUIHandler.java | 4 ++-- .../faxtomail/ui/swing/content/demande/DemandeUIHandler.java | 7 ++----- 2 files changed, 4 insertions(+), 7 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 9d25e1d96caaba883a83ef7708d18775e6ba3b9e Author: jcouteau <couteau@codelutin.com> Date: Tue Sep 25 14:41:19 2018 +0200 Clean logs --- .../com/franciaflex/faxtomail/ui/swing/content/MainUIHandler.java | 4 ++-- .../faxtomail/ui/swing/content/demande/DemandeUIHandler.java | 7 ++----- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/MainUIHandler.java b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/MainUIHandler.java index d44e79af..dcf10efc 100644 --- a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/MainUIHandler.java +++ b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/MainUIHandler.java @@ -400,8 +400,8 @@ public class MainUIHandler extends AbstractFaxToMailUIHandler<FaxToMailUIContext } public void reloadDemandList() { - if (log.isInfoEnabled()) { - log.info("reload demand list"); + if (log.isDebugEnabled()) { + log.debug("Reload demand list"); } ((FaxToMailUI<?, ? extends AbstractFaxToMailDemandListHandler>) currentBody).getHandler().reloadList(); } diff --git a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeUIHandler.java b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeUIHandler.java index c8e4a119..7733ed9f 100644 --- a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeUIHandler.java +++ b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeUIHandler.java @@ -452,16 +452,13 @@ public class DemandeUIHandler extends AbstractFaxToMailUIHandler<DemandeUIModel, } Date now = new Date(); - if (log.isInfoEnabled()) { - log.info("avant chargement combo clients " + now); - } final BeanFilterableComboBox<Client> clientComboBox = ui.getClientComboBox(); clientComboBox.getComboBoxModel().setWildcardCharacter(null); initBeanFilterableComboBox(clientComboBox, Collections.singletonList(model.getClient()), model.getClient()); long time = new Date().getTime()- now.getTime(); - if (log.isInfoEnabled()) { - log.info("chargement combo clients " + time); + if (log.isDebugEnabled()) { + log.debug("Chargement combo clients : " + time + " ms"); } KeyAdapter clientComboBoxKeyAdapter = new KeyAdapter() { -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm