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

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

Change-Id: I0eabf65ac402c88d4d1b45f1e1afe751039619b6
parents 160a3a6c 7fb6162d
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;
  }