lyhzzz пре 2 година
родитељ
комит
3d2ec3d944
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      src/main/java/com/fdkankan/fusion/common/util/ShellUtil.java

+ 2 - 2
src/main/java/com/fdkankan/fusion/common/util/ShellUtil.java

@@ -58,7 +58,7 @@ public class ShellUtil {
                 String line = null;
                 try {
                     while((line = in.readLine()) != null) {
-                       log.info("output: " + line);
+                       log.debug("output: " + line);
                     }
                 }
                 catch (IOException e) {
@@ -81,7 +81,7 @@ public class ShellUtil {
                 String line = null;
                 try {
                     while((line = err.readLine()) != null) {
-                        log.info("err: " + line);
+                        log.debug("err: " + line);
                     }
                 }
                 catch (IOException e) {