replace info with error

This commit is contained in:
Prabhjyot Singh 2016-05-03 14:23:47 +05:30
parent 7f6fa24555
commit ad26d0b8de

View file

@ -170,7 +170,7 @@ public class LivyHelper {
try {
res = interpret(incomplete + s, context, userSessionMap);
} catch (Exception e) {
LOGGER.info("Interpreter exception", e);
LOGGER.error("Interpreter exception", e);
return new InterpreterResult(Code.ERROR, InterpreterUtils.getMostRelevantMessage(e));
}