From da76b94ae8f428adbd9bc84ce0a0ef09b85ac894 Mon Sep 17 00:00:00 2001 From: Unsung Lee Date: Fri, 16 Sep 2022 16:35:46 +0900 Subject: [PATCH] Change a log from error to info Reduce the number of error log Change-Id: Ib2a9b8649ec40427fac7b16efec4bf488438e7b2 Signed-off-by: Unsung Lee --- src/cpu-boosting.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpu-boosting.c b/src/cpu-boosting.c index 56ba7f4..968dae2 100644 --- a/src/cpu-boosting.c +++ b/src/cpu-boosting.c @@ -40,7 +40,7 @@ int (*plugin_resource_unregister_cpu_inheritance_destination)(const char *dest_p static int open_cpu_boosting_plugin(void) { if (access(CPU_BOOSTING_PLUGIN_PATH, F_OK) != 0) { - _E("[CPU-BOOSTING] Cannot find a plugin file"); + _I("[CPU-BOOSTING] Cannot find a plugin file"); return RESOURCE_ERROR_NO_SUCH_FILE; } -- 2.34.1