Remove usage of deprecated yang parser classes
[yangtools.git] / yang-validation-tool / src / main / java / org / opendaylight / yangtools / yang / validation / tool / Params.java
index 6cd01cd64231cdb4218c131ff7e93bff31819806..5bc91bc0500c584c2ce3796fcad5ace3da63b79c 100644 (file)
@@ -9,12 +9,16 @@ package org.opendaylight.yangtools.yang.validation.tool;
 
 import java.io.File;
 import java.net.URISyntaxException;
+
 import net.sourceforge.argparse4j.ArgumentParsers;
 import net.sourceforge.argparse4j.annotation.Arg;
 import net.sourceforge.argparse4j.inf.ArgumentParser;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 final class Params {
 
+    private static final Logger LOG = LoggerFactory.getLogger(Params.class);
     @Arg(dest = "yang-source-dir")
     private File yangSourceDir;
 
@@ -39,15 +43,15 @@ final class Params {
             return false;
         }
         if (!yangSourceDir.exists()) {
-            System.err.println("Yang source directory has to exist");
+            LOG.error("Yang source directory has to exist");
             return false;
         }
         if (!yangSourceDir.canRead()) {
-            System.err.println("Yang source directory has to be readable");
+            LOG.error("Yang source directory has to be readable");
             return false;
         }
         if (yangSourceDir.list().length == 0) {
-            System.err.printf("Yang source directory '%s' does't contain any model%n", yangSourceDir.getPath());
+            LOG.error("Yang source directory {} doesn't contain any model", yangSourceDir.getPath());
             return false;
         }