summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Mark Salyzyn <salyzyn@google.com> 2016-09-28 15:29:14 -0700
committer Mark Salyzyn <salyzyn@google.com> 2016-10-03 11:29:34 -0700
commit0ad6c8fe441019980b1eeaf3047949e6601cdd7f (patch)
tree89db2672821b60881bc9672cdec937284514b4de
parent462e21cc8d28a4d48342cf0f634bd1ecc63647d7 (diff)
art: Replace cutils/log.h with android/log.h
Test: compile Bug: 26552300 Bug: 31289077 Change-Id: Ie5720d9e1388047856392e8635895895c22f3112
-rw-r--r--runtime/base/logging.cc2
-rw-r--r--runtime/monitor_android.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/base/logging.cc b/runtime/base/logging.cc
index 17873b541c..d09e66f3c4 100644
--- a/runtime/base/logging.cc
+++ b/runtime/base/logging.cc
@@ -27,7 +27,7 @@
// Headers for LogMessage::LogLine.
#ifdef ART_TARGET_ANDROID
-#include "cutils/log.h"
+#include <android/log.h>
#include <android/set_abort_message.h>
#else
#include <sys/types.h>
diff --git a/runtime/monitor_android.cc b/runtime/monitor_android.cc
index 671cb60037..0d1839baf4 100644
--- a/runtime/monitor_android.cc
+++ b/runtime/monitor_android.cc
@@ -21,7 +21,7 @@
#include <sys/stat.h>
#include <sys/types.h>
-#include "cutils/log.h"
+#include <android/log.h>
#define EVENT_LOG_TAG_dvm_lock_sample 20003