diff options
author | Igor Murashkin <iam@google.com> | 2014-03-17 14:00:29 -0700 |
---|---|---|
committer | Igor Murashkin <iam@google.com> | 2014-03-17 14:00:29 -0700 |
commit | e1445da74730473a66a3ae8414e940aebfe6585d (patch) | |
tree | 4156e14e4528fffe1ec29f48bffd78c2fcd0d786 /services | |
parent | 1c2b6e5e9671a5ea9eb26d24b772bb26bfa6d107 (diff) | |
download | frameworks_av-e1445da74730473a66a3ae8414e940aebfe6585d.zip frameworks_av-e1445da74730473a66a3ae8414e940aebfe6585d.tar.gz frameworks_av-e1445da74730473a66a3ae8414e940aebfe6585d.tar.bz2 |
camera2: Don't log vendor tag errors when camera HAL too old
Change-Id: Iac3d23284230c95c85ee404abbf9b22df1ae721c
Diffstat (limited to 'services')
-rw-r--r-- | services/camera/libcameraservice/CameraService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ status_t CameraService::getCameraVendorTagDescriptor(/*out*/sp<VendorTagDescript 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; } |