camera2: Don't log vendor tag errors when camera HAL too old
Change-Id: Iac3d23284230c95c85ee404abbf9b22df1ae721c
diff --git a/services/camera/libcameraservice/CameraService.cpp b/services/camera/libcameraservice/CameraService.cpp
index 6be5e0f..6fb5a84 100644
--- a/services/camera/libcameraservice/CameraService.cpp
+++ b/services/camera/libcameraservice/CameraService.cpp
@@ -287,7 +287,7 @@
if (mModule->common.module_api_version < CAMERA_MODULE_API_VERSION_2_2) {
// TODO: Remove this check once HAL1 shim is in place.
- ALOGE("%s: Only HAL module version V2.2 or higher supports vendor tags", __FUNCTION__);
+ ALOGW("%s: Only HAL module version V2.2 or higher supports vendor tags", __FUNCTION__);
return -EOPNOTSUPP;
}