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

Commit fc078dad authored by Jack He's avatar Jack He Committed by android-build-merger
Browse files

Config: Reduce LOG(WARNING) to VLOG(1) when config key is not found am: fd1aeefb am: 7fb6162d

am: a4d66f11

Change-Id: If8f9fa1168430e3da37b0c7b005f75d88e930fc9
parents c9a6f777 a4d66f11
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -369,7 +369,7 @@ bool btif_config_get_bin(const std::string& section, const std::string& key,
  const std::string* value_str = config_get_string(*config, section, key, NULL);

  if (!value_str) {
    LOG(WARNING) << __func__ << ": cannot find string for section " << section
    VLOG(1) << __func__ << ": cannot find string for section " << section
            << ", key " << key;
    return false;
  }