diff options
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) { |