From 5baa3a62a97544669fba6d65a11c07f252e654dd Mon Sep 17 00:00:00 2001 From: Steve Block Date: Tue, 20 Dec 2011 16:23:08 +0000 Subject: Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE See https://android-git.corp.google.com/g/156016 Bug: 5449033 Change-Id: I4c4e33bb9df3e39e11cd985e193e6fbab4635298 --- libs/camera/Camera.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/camera/Camera.cpp') diff --git a/libs/camera/Camera.cpp b/libs/camera/Camera.cpp index da21d1a05276..eef1dd2ef2c1 100644 --- a/libs/camera/Camera.cpp +++ b/libs/camera/Camera.cpp @@ -178,7 +178,7 @@ status_t Camera::setPreviewDisplay(const sp& surface) if (surface != 0) { return c->setPreviewDisplay(surface); } else { - LOGD("app passed NULL surface"); + ALOGD("app passed NULL surface"); return c->setPreviewDisplay(0); } } @@ -192,7 +192,7 @@ status_t Camera::setPreviewTexture(const sp& surfaceTexture) if (surfaceTexture != 0) { return c->setPreviewTexture(surfaceTexture); } else { - LOGD("app passed NULL surface"); + ALOGD("app passed NULL surface"); return c->setPreviewTexture(0); } } -- cgit v1.2.3-59-g8ed1b