X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.browsing.ui.graph.impl%2Fsrc%2Forg%2Fsimantics%2Fbrowsing%2Fui%2Fgraph%2Fimpl%2FGraphLabelerFactory.java;h=4ed616fd9f70720238cda2874ac5f609093a4286;hp=0671286e7a28632ff4bd514ed4e6a1e364e0e66f;hb=1dfeb7d5c49b1391cd9d877e1eddab18995cb151;hpb=c13c4179bda758e77fe1f2032d3c4268bb9e3120 diff --git a/bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/GraphLabelerFactory.java b/bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/GraphLabelerFactory.java index 0671286e7..4ed616fd9 100644 --- a/bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/GraphLabelerFactory.java +++ b/bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/GraphLabelerFactory.java @@ -24,6 +24,8 @@ import org.simantics.browsing.ui.content.Labeler.Modifier; import org.simantics.db.ReadGraph; import org.simantics.db.Resource; import org.simantics.db.exception.DatabaseException; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; public abstract class GraphLabelerFactory implements LabelerFactory { @@ -53,6 +55,11 @@ public abstract class GraphLabelerFactory implements LabelerFactory { public Modifier getModifier(ModificationContext modificationContext, String key) { return GraphLabelerFactory.this.getModifier(key); } + + @Override + public Logger getLogger() { + return LoggerFactory.getLogger(GraphLabelerFactory.class); + } }; }