cpu-boosting: Remove frequent called debug log 66/319866/1 accepted/tizen/9.0/unified/20241108.065559
authorUnsung Lee <unsung.lee@samsung.com>
Tue, 5 Nov 2024 02:30:23 +0000 (11:30 +0900)
committerUnsung Lee <unsung.lee@samsung.com>
Tue, 5 Nov 2024 02:53:02 +0000 (11:53 +0900)
Remove frequent called but not important debug log.

Change-Id: Ia6d7f49f03240ba8eeba7b1261ad7c64e71e055f
Signed-off-by: Unsung Lee <unsung.lee@samsung.com>
src/cpu-boosting.c

index 968dae28fea6f4acc2c4b61f93bc489e23c410bd..b622c2cccb2afceec0d206bdb23c740e93856f1b 100644 (file)
@@ -140,8 +140,6 @@ API int resource_set_cpu_inheritance (pid_t source_tid, const char *dest_process
        ret = func(source_tid, dest_process, timeout_msec);
        if (ret != RESOURCE_ERROR_NONE)
                _E("[CPU-BOOSTING] Failed to inherit CPU boosting level");
-       else
-               _D("[CPU-BOOSTING] %s called successfully", __func__);
 
        return ret;
 }
@@ -159,8 +157,6 @@ API int resource_clear_cpu_inheritance (pid_t source_tid, const char *dest_proce
        ret = func(source_tid, dest_process);
        if (ret != RESOURCE_ERROR_NONE)
                _E("[CPU-BOOSTING] Failed to cancel CPU boosting inheritance");
-       else
-               _D("[CPU-BOOSTING] %s called successfully", __func__);
 
        return ret;
 }