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

Commit 1f00cd06 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "LDAC: Use INFO log when library not found" am: b140f07c

Original change: https://android-review.googlesource.com/c/platform/system/bt/+/1737193

Change-Id: I4a06d1458bf0c9f3ad464b6bbb436c5baaffc91d
parents 56abd540 b140f07c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -130,7 +130,7 @@ bool A2DP_VendorLoadDecoderLdac(void) {
  // Open the decoder library
  ldac_bco_lib_handle = dlopen(LDAC_BCO_LIB_NAME, RTLD_NOW);
  if (ldac_bco_lib_handle == NULL) {
    LOG_ERROR("%s: cannot open LDAC decoder library %s: %s", __func__,
    LOG_INFO("%s: cannot open LDAC decoder library %s: %s", __func__,
              LDAC_BCO_LIB_NAME, dlerror());
    return false;
  }