]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.objmap2/src/org/simantics/objmap/graph/rules/domain/LinkedListAccessor.java
Use trace level debug messages with ObjMap
[simantics/platform.git] / bundles / org.simantics.objmap2 / src / org / simantics / objmap / graph / rules / domain / LinkedListAccessor.java
index efdaab56cf4665f2ec90a7a51182eb4b1cbf0c04..e9104c3d98b4193f9ded854bd4016ebfb35c7c04 100644 (file)
@@ -45,7 +45,7 @@ public class LinkedListAccessor implements IDomainAccessor<Resource,Collection<R
        @Override
        public Collection<Resource> get(ReadGraph g, Resource element) throws MappingException {
                try {
-                       LOGGER.info("        LinkdedListAccessor.get");
+                       LOGGER.trace("        LinkdedListAccessor.get");
                        return ListUtils.toList(g, g.getPossibleObject(element, relation));
                } catch (DatabaseException e) {
                        throw new MappingException(e);
@@ -56,7 +56,7 @@ public class LinkedListAccessor implements IDomainAccessor<Resource,Collection<R
        public boolean set(WriteGraph g, Resource element, Collection<Resource> value)
                        throws MappingException {
                try {
-                       LOGGER.info("        LinkdedListAccessor.set");
+                       LOGGER.trace("        LinkdedListAccessor.set");
                        return MappingUtils.synchronizeList(g, element, relation, listType, new ArrayList<Resource>(value), deleteExtraObjects);
                } catch (DatabaseException e) {
                        throw new MappingException(e);