Log exception on open

This commit is contained in:
Eric Charles 2016-03-29 09:28:13 +02:00
parent f6e685a667
commit 463c0661a1

View file

@ -103,6 +103,7 @@ public class SparkRInterpreter extends Interpreter {
try {
zeppelinR.open();
} catch (IOException e) {
logger.error("Exception while opening SparkRInterpreter", e);
throw new InterpreterException(e);
}