branch feature/7619-LL-VerifEcranCapteursUtilisées created (now dc859ad)
This is an automated email from the git hooks/post-receive script. New change to branch feature/7619-LL-VerifEcranCapteursUtilisées in repository tutti. See http://git.codelutin.com/tutti.git at dc859ad Ajouter du filtre sur les espèces (see #7619). This branch includes the following new commits: new dc859ad Ajouter du filtre sur les espèces (see #7619). 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 dc859ad333dd439a53ec82e5eb06bedbf168cb98 Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Wed Mar 9 17:42:29 2016 +0100 Ajouter du filtre sur les espèces (see #7619). -- 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 feature/7619-LL-VerifEcranCapteursUtilisées in repository tutti. See http://git.codelutin.com/tutti.git commit dc859ad333dd439a53ec82e5eb06bedbf168cb98 Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Wed Mar 9 17:42:29 2016 +0100 Ajouter du filtre sur les espèces (see #7619). --- .../longline/ActivityLongLineSensorUsedServiceTopia.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/observe-services-topia/src/main/java/fr/ird/observe/services/service/longline/ActivityLongLineSensorUsedServiceTopia.java b/observe-services-topia/src/main/java/fr/ird/observe/services/service/longline/ActivityLongLineSensorUsedServiceTopia.java index b4ad724..7fe750a 100644 --- a/observe-services-topia/src/main/java/fr/ird/observe/services/service/longline/ActivityLongLineSensorUsedServiceTopia.java +++ b/observe-services-topia/src/main/java/fr/ird/observe/services/service/longline/ActivityLongLineSensorUsedServiceTopia.java @@ -28,14 +28,21 @@ import fr.ird.observe.services.dto.Form; import fr.ird.observe.services.dto.longline.ActivityLonglineSensorUsedDto; import fr.ird.observe.services.dto.reference.request.ReferenceSetRequestDefinitions; import fr.ird.observe.services.dto.result.SaveResultDto; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; /** * @author Sylvain Bavencoff - bavencoff@codelutin.com */ public class ActivityLongLineSensorUsedServiceTopia extends ObserveServiceTopia implements ActivityLongLineSensorUsedService { + private static final Log log = LogFactory.getLog(ActivityLongLineSensorUsedServiceTopia.class); + @Override public Form<ActivityLonglineSensorUsedDto> loadForm(String activityLonglineId) { + if (log.isTraceEnabled()) { + log.trace("loadForm(" + activityLonglineId + ")"); + } ActivityLongline activityLongline = loadEntity(ActivityLonglineSensorUsedDto.class, activityLonglineId); @@ -49,6 +56,9 @@ public class ActivityLongLineSensorUsedServiceTopia extends ObserveServiceTopia @Override public SaveResultDto save(ActivityLonglineSensorUsedDto dto) { + if (log.isTraceEnabled()) { + log.trace("save(" + dto.getId() + ")"); + } ActivityLongline entity = loadOrCreateEntityAndCheckLastUpdate(dto); copyDataDtoToEntity(dto, entity); -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm