Change log level

This commit is contained in:
Lee moon soo 2015-09-30 15:07:51 +02:00
parent f2d67733b4
commit 5f3b25618e
2 changed files with 3 additions and 3 deletions

View file

@ -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);

View file

@ -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();