MISC : Exception Log(not error) print console -> write to file 19/27919/1
authorjungwook.ryu <jungwook.ryu@samsung.com>
Tue, 19 Aug 2014 07:47:38 +0000 (16:47 +0900)
committerjungwook.ryu <jungwook.ryu@samsung.com>
Tue, 23 Sep 2014 07:29:14 +0000 (16:29 +0900)
Change-Id: I9192d6931d741b7a936d301599f24dc6f704f442
Signed-off-by: jungwook.ryu <jungwook.ryu@samsung.com>
org.tizen.dynamicanalysis.ide.eplugin/src/org/tizen/dynamicanalysis/ide/eplugin/communication/DAServerManager.java
package/changelog
package/pkginfo.manifest

index defc9b1..f65990b 100644 (file)
@@ -122,8 +122,7 @@ public class DAServerManager extends Thread {
                                        try {
                                                Thread.sleep(1000);
                                        } catch (InterruptedException e) {
-                                               // TODO Auto-generated catch block
-                                               e.printStackTrace();
+                                               DALog.printLog("IDE is terminated!");
                                        }
                                }
 
@@ -299,11 +298,11 @@ public class DAServerManager extends Thread {
                        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;
                }
@@ -330,8 +329,7 @@ public class DAServerManager extends Thread {
                                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();
index 4664457..f1eb995 100644 (file)
@@ -1,3 +1,6 @@
+* 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
index 2d257d8..1ba81e6 100644 (file)
@@ -1,4 +1,4 @@
-Version:2.2.13
+Version:2.2.14
 Source:dynamic-analysis-ide-eplugin
 Maintainer:Jungwook Ryu <jungwook.ryu@samsung.com>, Juyoung Kim <j0.kim@samsung.com>