Summary : modify the logic to verify that current log is excluded from the memory... 82/28682/3
authorseokgil.kang <seokgil.kang@samsung.com>
Tue, 14 Oct 2014 07:33:54 +0000 (16:33 +0900)
committerseokgil.kang <seokgil.kang@samsung.com>
Tue, 14 Oct 2014 08:20:23 +0000 (17:20 +0900)
Change-Id: Ie10f782d7bdabf0c4d63af48ebc6045846a40fa6
Signed-off-by: seokgil.kang <seokgil.kang@samsung.com>
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/summary/leaks/NewLeakDetector.java

index 87a0904..237ff88 100644 (file)
@@ -92,8 +92,9 @@ public class NewLeakDetector {
        // Feature On : false, Feature Off : true 
        private boolean isDropLog(LogData logData) {
                TargetData target = SettingDataManager.getInstance().getConnectedTarget();
-               int id = logData.getId();
-               switch (id) {
+               ProbeCommonData pData = (ProbeCommonData) logData;
+               if (!pData.isInternal())        return false;
+               switch (pData.getId()) {
                case DataChannelConstants.MSG_PROBE_FILE:
                        if (target.isSelectedFeature(ConfigureLabels.INCLUDE_INSIDE_CALL_FILE)) {
                                return false;