diff options
author | Peiyong Lin <lpy@google.com> | 2019-02-05 17:46:14 -0800 |
---|---|---|
committer | Peiyong Lin <lpy@google.com> | 2019-02-06 11:05:14 -0800 |
commit | 09dbd3df37fe009217638ab4d0010be3bfe891d6 (patch) | |
tree | 7fc0a9650081bf73166178974031eb323d5354ec /configstore/utils/ConfigStoreUtils.cpp | |
parent | 892624d06d1bc2e96bf1fde81318c756c6c9384f (diff) |
[ConfigStore] Slient log spam.
Previously ConfigStore keeps logging info of each function, this patch moves it
to verbose to avoid log spam.
BUG: 123312783
Test: Build, flash and boot. Verify with adb logcat
Change-Id: I8dce745122ca05d18cd899c536342521432f5325
Diffstat (limited to 'configstore/utils/ConfigStoreUtils.cpp')
-rw-r--r-- | configstore/utils/ConfigStoreUtils.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configstore/utils/ConfigStoreUtils.cpp b/configstore/utils/ConfigStoreUtils.cpp index 5a1fb42e27..8cb61a91e1 100644 --- a/configstore/utils/ConfigStoreUtils.cpp +++ b/configstore/utils/ConfigStoreUtils.cpp @@ -23,12 +23,12 @@ namespace android { namespace hardware { namespace details { -bool wouldLogInfo() { - return WOULD_LOG(INFO); +bool wouldLogVerbose() { + return WOULD_LOG(VERBOSE); } -void logAlwaysInfo(const std::string& message) { - LOG(INFO) << message; +void logAlwaysVerbose(const std::string& message) { + LOG(VERBOSE) << message; } void logAlwaysError(const std::string& message) { |