try {
Thread.sleep(1000);
} catch (InterruptedException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
+ DALog.printLog("IDE is terminated!");
}
}
InetSocketAddress socketAddress = new InetSocketAddress(InetAddress.getLocalHost(), serverPort);
ideClientSocket.connect(socketAddress);
} 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();
+* 2.2.14
+Exception Log(not error) print console -> write to file
+== jungwook.ryu <jungwook.ryu@samsung.com> 2014-09-23
* 2.2.13
- Apply "Changed native template (nativcpp -> nativecore)"
== jungwook.ryu <jungwook.ryu@samsung.com> 2014-09-11