From: SangYoun Kwak Date: Mon, 10 Apr 2023 09:17:04 +0000 (+0900) Subject: resourced-memory-lmk: Remove unnecessary logs X-Git-Tag: accepted/tizen/unified/20230607.160238~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=958f9b5b488d8459dfd15bfdae16874451e1b446;p=platform%2Fcore%2Fsystem%2Fplugin%2Fresourced-generic.git resourced-memory-lmk: Remove unnecessary logs Some logs were showing meaningless informations: * The ratio between candidates->len and task_info_app_array->len, which are the same. * The Number of processes which are added to the candidate, which is same as the number of processes passed to the governor. Signed-off-by: SangYoun Kwak --- diff --git a/src/resourced-memory-lmk/resourced-memory-lmk.c b/src/resourced-memory-lmk/resourced-memory-lmk.c index 361d25a..7abcd86 100644 --- a/src/resourced-memory-lmk/resourced-memory-lmk.c +++ b/src/resourced-memory-lmk/resourced-memory-lmk.c @@ -65,8 +65,6 @@ int get_kill_candidates(GArray *candidates, g_array_append_val(candidates, task); } - _D("[LMK] Apps candidates ratio=%d/%d", candidates->len, task_info_app_array->len); - if (!candidates->len) return 0; @@ -77,7 +75,6 @@ int get_kill_candidates(GArray *candidates, struct task_info, i); g_array_append_val(candidates, task); } - _D("[LMK] %d processes were added to candidates", task_info_proc_array->len); } g_array_sort_with_data(candidates, (GCompareDataFunc)compare_victims,