Remove unnecessary stacktrace and provide more meaningful message

This commit is contained in:
Lee moon soo 2016-06-16 14:54:12 -07:00
parent 644add4c22
commit ac963ff83a

View file

@ -247,7 +247,7 @@ public abstract class AbstractTestRestApi {
request = httpGet("/");
isRunning = request.getStatusCode() == 200;
} catch (IOException e) {
LOG.error("Exception in AbstractTestRestApi while checkIfServerIsRunning ", e);
LOG.error("AbstractTestRestApi.checkIfServerIsRunning() fails .. ZeppelinServer is not running");
isRunning = false;
} finally {
if (request != null) {