diff options
author | Dianne Hackborn <hackbod@google.com> | 2012-05-08 14:54:24 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2012-05-08 14:54:24 -0700 |
commit | 34c65888d1842315e987045594e2999442c78f1d (patch) | |
tree | 2428e203cbf877cf8ae55523504d5716c53d74be /libs/utils | |
parent | ddcb1c2bbd273dff15411c4346bb78d3fa939ab4 (diff) | |
download | frameworks_native-34c65888d1842315e987045594e2999442c78f1d.zip frameworks_native-34c65888d1842315e987045594e2999442c78f1d.tar.gz frameworks_native-34c65888d1842315e987045594e2999442c78f1d.tar.bz2 |
Change name of system property for traces.
This allows the property to be changed from the settings UI.
Change-Id: Ife7424b3549e5bbe51b6ad2fb8e5edde3a9fd608
Diffstat (limited to 'libs/utils')
-rw-r--r-- | libs/utils/Trace.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/utils/Trace.cpp b/libs/utils/Trace.cpp index f7d8abe..f3ec485 100644 --- a/libs/utils/Trace.cpp +++ b/libs/utils/Trace.cpp @@ -39,7 +39,7 @@ void Tracer::init() { // sEnabledTags remains zero indicating that no tracing can occur } else { char value[PROPERTY_VALUE_MAX]; - property_get("atrace.tags.enableflags", value, "0"); + property_get("debug.atrace.tags.enableflags", value, "0"); sEnabledTags = (strtoll(value, NULL, 0) & ATRACE_TAG_VALID_MASK) | ATRACE_TAG_ALWAYS; } |