Fix slf4j usage errors found by checkstyle-logging
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / deviate / AbstractDeviateStatementSupport.java
index 8cce0c2cb03a192bbc679e0c1a026b84c0b16358..ce3630580dfca3b33b41671e91663876fab21f42 100644 (file)
@@ -47,7 +47,7 @@ import org.slf4j.LoggerFactory;
 
 abstract class AbstractDeviateStatementSupport extends AbstractStatementSupport<DeviateKind, DeviateStatement,
         EffectiveStatement<DeviateKind, DeviateStatement>> {
-    private static final Logger LOG = LoggerFactory.getLogger(DeviateStatementImpl.class);
+    private static final Logger LOG = LoggerFactory.getLogger(AbstractDeviateStatementSupport.class);
 
     private static final SubstatementValidator DEVIATE_NOT_SUPPORTED_SUBSTATEMENT_VALIDATOR =
             SubstatementValidator.builder(YangStmtMapping.DEVIATE).build();
@@ -372,4 +372,4 @@ abstract class AbstractDeviateStatementSupport extends AbstractStatementSupport<
         return supportedDeviationTargets == null || supportedDeviationTargets.contains(
                 deviateTargetCtx.getPublicDefinition());
     }
-}
\ No newline at end of file
+}