mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Change log level
This commit is contained in:
parent
f2d67733b4
commit
5f3b25618e
2 changed files with 3 additions and 3 deletions
|
|
@ -64,7 +64,7 @@ public class ShellInterpreter extends Interpreter {
|
|||
|
||||
@Override
|
||||
public InterpreterResult interpret(String cmd, InterpreterContext contextInterpreter) {
|
||||
logger.info("Run shell command '" + cmd + "'");
|
||||
logger.debug("Run shell command '" + cmd + "'");
|
||||
long start = System.currentTimeMillis();
|
||||
CommandLine cmdLine = CommandLine.parse("bash");
|
||||
cmdLine.addArgument("-c", false);
|
||||
|
|
|
|||
|
|
@ -203,7 +203,7 @@ public class Paragraph extends Job implements Serializable, Cloneable {
|
|||
settings.setForms(inputs);
|
||||
script = Input.getSimpleQuery(settings.getParams(), scriptBody);
|
||||
}
|
||||
logger().info("RUN : " + script);
|
||||
logger().debug("RUN : " + script);
|
||||
InterpreterResult ret = repl.interpret(script, getInterpreterContext());
|
||||
return ret;
|
||||
}
|
||||
|
|
@ -273,7 +273,7 @@ public class Paragraph extends Job implements Serializable, Cloneable {
|
|||
setResult(value);
|
||||
setException(t);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public Object clone() throws CloneNotSupportedException {
|
||||
Paragraph paraClone = (Paragraph) super.clone();
|
||||
|
|
|
|||
Loading…
Reference in a new issue