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

Commit 7fb6162d 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

Change-Id: I87fd172353352e4ad79fcf801ebdcfcf7eefebbb
parents 753e3593 fd1aeefb
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;
  }