X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.objmap2%2Fsrc%2Forg%2Fsimantics%2Fobjmap%2Fgraph%2Frules%2Fdomain%2FLinkedListAccessor.java;h=e9104c3d98b4193f9ded854bd4016ebfb35c7c04;hb=993f8fda339c833e182a540bd4c10d3a91624966;hp=efdaab56cf4665f2ec90a7a51182eb4b1cbf0c04;hpb=87d3c60a5c520cca584c54e6bc0fd8c9576141a7;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.objmap2/src/org/simantics/objmap/graph/rules/domain/LinkedListAccessor.java b/bundles/org.simantics.objmap2/src/org/simantics/objmap/graph/rules/domain/LinkedListAccessor.java index efdaab56c..e9104c3d9 100644 --- a/bundles/org.simantics.objmap2/src/org/simantics/objmap/graph/rules/domain/LinkedListAccessor.java +++ b/bundles/org.simantics.objmap2/src/org/simantics/objmap/graph/rules/domain/LinkedListAccessor.java @@ -45,7 +45,7 @@ public class LinkedListAccessor implements IDomainAccessor 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 value) throws MappingException { try { - LOGGER.info(" LinkdedListAccessor.set"); + LOGGER.trace(" LinkdedListAccessor.set"); return MappingUtils.synchronizeList(g, element, relation, listType, new ArrayList(value), deleteExtraObjects); } catch (DatabaseException e) { throw new MappingException(e);