From 026a82aea5fdc2a90b9e5c1a407d55aa3f83eb3d Mon Sep 17 00:00:00 2001 From: sooyeon Date: Fri, 13 Sep 2024 19:27:09 +0900 Subject: [PATCH] Add error handling for issue that occur in a failed state of ducking create Change-Id: I3672823c16592a7a6fc55ddb0f5283acfd8a4ecb Signed-off-by: sooyeon --- client/vc_mgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/vc_mgr.c b/client/vc_mgr.c index 862eb27..0d6659e 100644 --- a/client/vc_mgr.c +++ b/client/vc_mgr.c @@ -313,7 +313,7 @@ int vc_mgr_initialize(void) ret = vc_mgr_ducking_create(); if (VC_ERROR_NONE != ret) { - SLOG(LOG_ERROR, TAG_VCM, "[INFO] Fail to ducking create : %d", ret); + SLOG(LOG_ERROR, TAG_VCM, "[ERROR] Fail to ducking create : %d", ret); vc_config_mgr_finalize(g_pid + VC_MANAGER_CONFIG_HANDLE); vc_mgr_client_destroy(); return ret; -- 2.34.1