X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.browsing.ui.graph.impl%2Fsrc%2Forg%2Fsimantics%2Fbrowsing%2Fui%2Fgraph%2Fimpl%2FArrayPropertyLabelerFactory.java;h=bd7cf6bbd4ba2b428fdd514066310d56a23bfafb;hb=972fd5be2b27129dd53bbf885d9a95314e47ddc2;hp=77f141a2f8e5a87a47c59843691c8da8d59c5b4f;hpb=0ae2b770234dfc3cbb18bd38f324125cf0faca07;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/ArrayPropertyLabelerFactory.java b/bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/ArrayPropertyLabelerFactory.java index 77f141a2f..bd7cf6bbd 100644 --- a/bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/ArrayPropertyLabelerFactory.java +++ b/bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/ArrayPropertyLabelerFactory.java @@ -42,6 +42,8 @@ import org.simantics.db.management.ISessionContext; import org.simantics.layer0.Layer0; import org.simantics.utils.datastructures.ArrayMap; import org.simantics.utils.datastructures.slice.ValueRange; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; /** * @author Tuukka Lehtonen @@ -151,6 +153,11 @@ public class ArrayPropertyLabelerFactory implements LabelerFactory { } return null; } + + @Override + public Logger getLogger() { + return LoggerFactory.getLogger(PropertyLabeler.class); + } } static class ArrayPropertyLabeler extends LazyGraphLabeler { @@ -262,6 +269,11 @@ public class ArrayPropertyLabelerFactory implements LabelerFactory { } return null; } + + @Override + public Logger getLogger() { + return LoggerFactory.getLogger(ArrayPropertyLabeler.class); + } }; }