summaryrefslogtreecommitdiffstats
path: root/logcat
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2016-09-28 15:54:45 -0700
committerMark Salyzyn <salyzyn@google.com>2016-09-30 12:47:05 -0700
commit0dd4431072cce3c62876b728cb20aa5b77b11a8d (patch)
tree0b74770f2695473c01ddb2297726896bf4d8c9a1 /logcat
parent23ed4c242a01052696dde84babd7631a7ec5a691 (diff)
downloadsystem_core-0dd4431072cce3c62876b728cb20aa5b77b11a8d.tar.gz
system_core-0dd4431072cce3c62876b728cb20aa5b77b11a8d.tar.bz2
system_core-0dd4431072cce3c62876b728cb20aa5b77b11a8d.zip
logd: logcat: Replace log/log.h with android/log.h
Should use android/log.h instead of log/log.h as a good example to all others. Test: Compile Bug: 26552300 Bug: 31289077 Change-Id: If4c9711eb57267d4707b03d54a932af9de241b13
Diffstat (limited to 'logcat')
-rw-r--r--logcat/logcat.cpp2
-rw-r--r--logcat/tests/logcat_test.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/logcat/logcat.cpp b/logcat/logcat.cpp
index 5ac0758df..d1a23ae31 100644
--- a/logcat/logcat.cpp
+++ b/logcat/logcat.cpp
@@ -25,13 +25,13 @@
#include <memory>
#include <string>
+#include <android/log.h>
#include <android-base/file.h>
#include <android-base/stringprintf.h>
#include <android-base/strings.h>
#include <cutils/sched_policy.h>
#include <cutils/sockets.h>
#include <log/event_tag_map.h>
-#include <log/log.h>
#include <log/logger.h>
#include <log/logprint.h>
#include <system/thread_defs.h>
diff --git a/logcat/tests/logcat_test.cpp b/logcat/tests/logcat_test.cpp
index 269bcc8a0..9c9043eb3 100644
--- a/logcat/tests/logcat_test.cpp
+++ b/logcat/tests/logcat_test.cpp
@@ -26,8 +26,8 @@
#include <memory>
+#include <android/log.h>
#include <gtest/gtest.h>
-#include <log/log.h>
#include <log/logger.h>
#define BIG_BUFFER (5 * 1024)