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

Commit ac6d4bfc authored by Myles Watson's avatar Myles Watson
Browse files

LDAC: Use INFO log when library not found

Fixes: 189299364
Change-Id: I45992045a42afca85cb25223a52d6b6cfca0085c
Test: cert/run
Tag: #gd-cleanup
parent 00b0492c
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;
  }