libcsc: LOG* -> ALOG*

Change-Id: I06238279769dc486621e7cb1adf1169b9390dd7d
Signed-off-by: Dima Zavin <dima@android.com>
diff --git a/libcsc/csc.c b/libcsc/csc.c
index 26b26cc..c29716b 100644
--- a/libcsc/csc.c
+++ b/libcsc/csc.c
@@ -352,7 +352,7 @@
         break;
 #endif
     default:
-        LOGE("%s:: unsupported csc_hw_type", __func__);
+        ALOGE("%s:: unsupported csc_hw_type", __func__);
         break;
     }
 
@@ -383,17 +383,17 @@
 #ifdef USE_FIMC
         case CSC_HW_TYPE_FIMC:
             csc_handle->csc_hw_handle = csc_hwconverter_open();
-            LOGD("%s:: CSC_HW_TYPE_FIMC", __func__);
+            ALOGD("%s:: CSC_HW_TYPE_FIMC", __func__);
             break;
 #endif
 #ifdef USE_GSCALER
         case CSC_HW_TYPE_GSCALER:
             csc_handle->csc_hw_handle = exynos_gsc_create();
-            LOGD("%s:: CSC_HW_TYPE_GSCALER", __func__);
+            ALOGD("%s:: CSC_HW_TYPE_GSCALER", __func__);
             break;
 #endif
         default:
-            LOGE("%s:: unsupported csc_hw_type, csc use sw", __func__);
+            ALOGE("%s:: unsupported csc_hw_type, csc use sw", __func__);
             csc_handle->csc_hw_handle == NULL;
             break;
         }
@@ -411,13 +411,13 @@
 
     if (csc_handle->csc_method == CSC_METHOD_HW) {
         if (csc_handle->csc_hw_handle == NULL) {
-            LOGE("%s:: CSC_METHOD_HW can't open HW", __func__);
+            ALOGE("%s:: CSC_METHOD_HW can't open HW", __func__);
             free(csc_handle);
             csc_handle = NULL;
         }
     }
 
-    LOGD("%s:: CSC_METHOD=%d", __func__, csc_handle->csc_method);
+    ALOGD("%s:: CSC_METHOD=%d", __func__, csc_handle->csc_method);
 
     return (void *)csc_handle;
 }
@@ -442,7 +442,7 @@
             break;
 #endif
         default:
-            LOGE("%s:: unsupported csc_hw_type", __func__);
+            ALOGE("%s:: unsupported csc_hw_type", __func__);
             break;
         }
     }
@@ -547,7 +547,7 @@
             break;
 #endif
         default:
-            LOGE("%s:: unsupported csc_hw_type", __func__);
+            ALOGE("%s:: unsupported csc_hw_type", __func__);
             break;
         }
     }
@@ -631,7 +631,7 @@
             break;
 #endif
         default:
-            LOGE("%s:: unsupported csc_hw_type", __func__);
+            ALOGE("%s:: unsupported csc_hw_type", __func__);
             break;
         }
     }
@@ -672,7 +672,7 @@
             break;
 #endif
         default:
-            LOGE("%s:: unsupported csc_hw_type", __func__);
+            ALOGE("%s:: unsupported csc_hw_type", __func__);
             break;
         }
     }
@@ -713,7 +713,7 @@
             break;
 #endif
         default:
-            LOGE("%s:: unsupported csc_hw_type", __func__);
+            ALOGE("%s:: unsupported csc_hw_type", __func__);
             break;
         }
     }
diff --git a/libcsc/hwconverter_wrapper.cpp b/libcsc/hwconverter_wrapper.cpp
index 9f6cd07..e2030e9 100644
--- a/libcsc/hwconverter_wrapper.cpp
+++ b/libcsc/hwconverter_wrapper.cpp
@@ -52,7 +52,7 @@
     if (hw_converter->bHWconvert_flag == 0) {
         delete hw_converter;
         hw_converter = NULL;
-        LOGE("%s LINE = %d HardwareConverter failed", __func__, __LINE__);
+        ALOGE("%s LINE = %d HardwareConverter failed", __func__, __LINE__);
     }
 
     return (void *)hw_converter;