change the logs 75/201675/3
authorSooChan Lim <sc1.lim@samsung.com>
Tue, 19 Mar 2019 01:30:29 +0000 (10:30 +0900)
committerSooChan Lim <sc1.lim@samsung.com>
Tue, 19 Mar 2019 04:24:14 +0000 (13:24 +0900)
change info logs to debug logs

Change-Id: I0bd722d9a8e5f1d01ab6e03335478dc1045c02e2

src/tdm_exynos_hwc.c

index 968de0dc7aa8939b0c2db336f2bc8ef1c3714788..c5232e9da547ad72e6e14dfd34b3eefeafdc9d5d 100644 (file)
@@ -44,7 +44,7 @@ _print_validate_result(tdm_exynos_hwc_data *hwc_data, tdm_hwc_window **composite
                hwc_window_data = composited_wnds[i];
                switch (hwc_window_data->validated_type) {
                case TDM_HWC_WIN_COMPOSITION_CLIENT:
-                       TDM_INFO(" window:%p %s -> %s : lzpos(%d) -- {%s} on TARGET WINDOW", hwc_window_data,
+                       TDM_DBG(" window:%p %s -> %s : lzpos(%d) -- {%s} on TARGET WINDOW", hwc_window_data,
                                        _comp_to_str(hwc_window_data->client_type),
                                        _comp_to_str(hwc_window_data->validated_type),
                                        hwc_data->target_hwc_window->lzpos,
@@ -54,7 +54,7 @@ _print_validate_result(tdm_exynos_hwc_data *hwc_data, tdm_hwc_window **composite
                case TDM_HWC_WIN_COMPOSITION_VIDEO:
                case TDM_HWC_WIN_COMPOSITION_CURSOR:
                case TDM_HWC_WIN_COMPOSITION_NONE:
-                       TDM_INFO(" window:%p %s -> %s : lzpos(%d) -- {%s}", hwc_window_data,
+                       TDM_DBG(" window:%p %s -> %s : lzpos(%d) -- {%s}", hwc_window_data,
                                        _comp_to_str(hwc_window_data->client_type),
                                        _comp_to_str(hwc_window_data->validated_type),
                                        hwc_window_data->lzpos,
@@ -377,7 +377,7 @@ exynos_hwc_create_window(tdm_hwc *hwc, tdm_error *error)
 
        LIST_ADDTAIL(&hwc_window_data->link, &hwc_data->hwc_window_list);
 
-       TDM_INFO("hwc_window_data(%p) create", hwc_window_data);
+       TDM_DBG("hwc_window(%p) create", hwc_window_data);
        if (error)
                *error = TDM_ERROR_NONE;
 
@@ -476,7 +476,7 @@ exynos_hwc_validate(tdm_hwc *hwc, tdm_hwc_window **composited_wnds, uint32_t num
        RETURN_VAL_IF_FAIL(hwc_data != NULL, TDM_ERROR_INVALID_PARAMETER);
        RETURN_VAL_IF_FAIL(num_types != NULL, TDM_ERROR_INVALID_PARAMETER);
 
-       TDM_INFO(" ==============Validate=================================");
+       TDM_DBG(" ==============Validate=================================");
 
        _exynos_hwc_apply_policy(hwc_data, composited_wnds, num_wnds);
 
@@ -530,7 +530,7 @@ exynos_hwc_accept_validation(tdm_hwc *hwc)
 
        RETURN_VAL_IF_FAIL(hwc_data != NULL, TDM_ERROR_INVALID_PARAMETER);
 
-       TDM_INFO(" ==============Accept Changes Done=================================");
+       TDM_DBG(" ==============Accept Changes Done=================================");
 
        _exynos_hwc_prepare_commit(hwc_data);
        hwc_data->need_validate = 0;