Change-Id: I9192d6931d741b7a936d301599f24dc6f704f442
Signed-off-by: jungwook.ryu <jungwook.ryu@samsung.com>
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
+ DALog.printLog("IDE is terminated!");
}
}
try {
ideClientSocket = new Socket(LOCAL_HOST, serverPort);
} catch (UnknownHostException e) {
- e.printStackTrace();
+ DALog.printLog(e);
ideClientSocket = null;
return false;
} catch (IOException e) {
- e.printStackTrace();
+ DALog.printLog(e);
ideClientSocket = null;
return false;
}
this.wait(10000);
} catch (InterruptedException e) {
DALog.printLog("DAServerManager - sendDAStatusMessage - getRecvDAReadyStatus().wait(10000)");
- // TODO Auto-generated catch block
- e.printStackTrace();
+ DALog.printLog(e);
}
}
return getRecvDAReadyStatus();