aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Cherry <tomcherry@google.com>2021-04-02 16:21:40 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-04-02 16:21:40 +0000
commit87a205eefa2e12597f6d7a05db05fefbe498a292 (patch)
treefc1267f584be9fbd57dd6f566a46e9e5e0bffdbc
parent0ffd09ad0c035e8db0c3f7ad7a6630e52287acc5 (diff)
parent8f11c5f789dcf1020c432becbf6b8dd4d1cdad1b (diff)
downloadbionic-87a205eefa2e12597f6d7a05db05fefbe498a292.tar.gz
Merge "Match 'Access denied finding property' log severity to SELinux"
-rw-r--r--libc/system_properties/system_properties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/system_properties/system_properties.cpp b/libc/system_properties/system_properties.cpp
index 3fd20b749..344c8383f 100644
--- a/libc/system_properties/system_properties.cpp
+++ b/libc/system_properties/system_properties.cpp
@@ -133,7 +133,7 @@ const prop_info* SystemProperties::Find(const char* name) {
prop_area* pa = contexts_->GetPropAreaForName(name);
if (!pa) {
- async_safe_format_log(ANDROID_LOG_ERROR, "libc", "Access denied finding property \"%s\"", name);
+ async_safe_format_log(ANDROID_LOG_WARN, "libc", "Access denied finding property \"%s\"", name);
return nullptr;
}