summaryrefslogtreecommitdiffstats
path: root/libs/utils
diff options
context:
space:
mode:
Diffstat (limited to 'libs/utils')
-rw-r--r--libs/utils/Trace.cpp2
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;
}