commit | 6479d798a1c4470713b9eaab02369f4e758c9f5f | [log] [tgz] |
---|---|---|
author | Daniel Jacob Chittoor <djchittoor47@gmail.com> | Fri Apr 24 22:08:01 2020 +0530 |
committer | SamarV-121 <samarvispute121@pm.me> | Fri Sep 16 19:59:14 2022 +0530 |
tree | a0f3de6f0c5363ffb67ca45c7a03e421366bec48 | |
parent | 1b72b36b0d1398405da1285a6bacc2a581422ee4 [diff] |
universal7904: camera: set NDEBUG true - stops the unnecessary logspam of camera parameters during boot - we are in production state, so its kind of meaningless now Change-Id: Id16020e604d3f9eb8d1dafb65517bc36149e957e Signed-off-by: SamarV-121 <samarvispute121@pm.me>
diff --git a/hardware/camera/CallbackWorkerThread.cpp b/hardware/camera/CallbackWorkerThread.cpp index fedafbb..4d04917 100644 --- a/hardware/camera/CallbackWorkerThread.cpp +++ b/hardware/camera/CallbackWorkerThread.cpp
@@ -39,7 +39,7 @@ * */ -#define LOG_NDEBUG 0 +#define LOG_NDEBUG 1 #define LOG_TAG "Camera2WrapperCbThread" #include "CallbackWorkerThread.h"
diff --git a/hardware/camera/Camera2Wrapper.cpp b/hardware/camera/Camera2Wrapper.cpp index db3d8da..b172c52 100644 --- a/hardware/camera/Camera2Wrapper.cpp +++ b/hardware/camera/Camera2Wrapper.cpp
@@ -14,7 +14,7 @@ * limitations under the License. */ -#define LOG_NDEBUG 0 +#define LOG_NDEBUG 1 #define LOG_PARAMETERS #define LOG_TAG "Camera2Wrapper"
diff --git a/hardware/camera/Camera3Wrapper.cpp b/hardware/camera/Camera3Wrapper.cpp index f4e9cbf..79518dc 100644 --- a/hardware/camera/Camera3Wrapper.cpp +++ b/hardware/camera/Camera3Wrapper.cpp
@@ -14,7 +14,7 @@ * limitations under the License. */ -#define LOG_NDEBUG 0 +#define LOG_NDEBUG 1 #define LOG_TAG "Camera3Wrapper" #include <cutils/log.h>
diff --git a/hardware/camera/CameraWrapper.cpp b/hardware/camera/CameraWrapper.cpp index 3b7d348..4e6ea09 100644 --- a/hardware/camera/CameraWrapper.cpp +++ b/hardware/camera/CameraWrapper.cpp
@@ -14,7 +14,7 @@ * limitations under the License. */ -#define LOG_NDEBUG 0 +#define LOG_NDEBUG 1 #define LOG_PARAMETERS #define LOG_TAG "CameraWrapper"