You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2015/01/21 22:02:45 UTC

karaf git commit: [KARAF-3444] Change the log level to debug in shell:exec command

Repository: karaf
Updated Branches:
  refs/heads/master 56d733b9e -> 870a0ceb0


[KARAF-3444] Change the log level to debug in shell:exec command


Project: http://git-wip-us.apache.org/repos/asf/karaf/repo
Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/870a0ceb
Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/870a0ceb
Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/870a0ceb

Branch: refs/heads/master
Commit: 870a0ceb09165028ef21da59d9efbd0ad03c02c9
Parents: 56d733b
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Wed Jan 21 22:02:09 2015 +0100
Committer: Jean-Baptiste Onofré <jb...@apache.org>
Committed: Wed Jan 21 22:02:09 2015 +0100

----------------------------------------------------------------------
 .../java/org/apache/karaf/shell/commands/impl/ExecuteAction.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf/blob/870a0ceb/shell/commands/src/main/java/org/apache/karaf/shell/commands/impl/ExecuteAction.java
----------------------------------------------------------------------
diff --git a/shell/commands/src/main/java/org/apache/karaf/shell/commands/impl/ExecuteAction.java b/shell/commands/src/main/java/org/apache/karaf/shell/commands/impl/ExecuteAction.java
index 0afe73d..3c60859 100644
--- a/shell/commands/src/main/java/org/apache/karaf/shell/commands/impl/ExecuteAction.java
+++ b/shell/commands/src/main/java/org/apache/karaf/shell/commands/impl/ExecuteAction.java
@@ -44,7 +44,7 @@ public class ExecuteAction implements Action {
 
         PumpStreamHandler handler = new PumpStreamHandler(System.in, System.out, System.err, "Command" + args.toString());
 
-        log.info("Executing: {}", builder.command());
+        log.debug("Executing: {}", builder.command());
         Process p = builder.start();
 
         handler.attach(p);
@@ -54,7 +54,7 @@ public class ExecuteAction implements Action {
         
         int status = p.waitFor();
 
-        log.info("Process exited w/status: {}", status);
+        log.debug("Process exited w/status: {}", status);
 
         handler.stop();