Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 530ad5bf authored by Jayant Chowdhary's avatar Jayant Chowdhary Committed by Android (Google) Code Review
Browse files

Merge "camera: Reduce logspam from VirtualDeviceCameraIdMapper" into main

parents ad8248a7 f3be1da5
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@
 * limitations under the License.
 */

//#define LOG_NDEBUG 0
#define LOG_TAG "VirtualDeviceCameraIdMapper"

#include <android_companion_virtualdevice_flags.h>
@@ -99,8 +100,8 @@ std::pair<int32_t, std::string> VirtualDeviceCameraIdMapper::getDeviceIdAndMappe
            return deviceIdMappedCameraIdPair;
        }
    }
    ALOGD("%s: No device id and mapped camera id found for camera id %s, so it must belong "
          "to the default device", __func__, cameraId.c_str());
    ALOGV("%s: No device id and mapped camera id found for camera id %s, so it must belong "
            "to the default device ? ", __func__, cameraId.c_str());
    return std::make_pair(kDefaultDeviceId, cameraId);
}