lyhzzz 2 vuotta sitten
vanhempi
commit
3d2ec3d944
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  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) {