Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0dd44310 authored by Mark Salyzyn's avatar Mark Salyzyn
Browse files

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
parent 23ed4c24
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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>
+1 −1
Original line number Diff line number Diff line
@@ -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)
+2 −3
Original line number Diff line number Diff line
@@ -22,10 +22,9 @@
#include <list>
#include <string>

#include <log/log.h>
#include <sysutils/SocketClient.h>

#include <android/log.h>
#include <private/android_filesystem_config.h>
#include <sysutils/SocketClient.h>

#include "LogBufferElement.h"
#include "LogTimes.h"
+1 −1
Original line number Diff line number Diff line
@@ -21,8 +21,8 @@
#include <stdlib.h>
#include <sys/types.h>

#include <android/log.h>
#include <sysutils/SocketClient.h>
#include <log/log.h>
#include <log/logger.h>

class LogBuffer;
+1 −1
Original line number Diff line number Diff line
@@ -25,8 +25,8 @@
#include <string>    // std::string
#include <unordered_map>

#include <android/log.h>
#include <android-base/stringprintf.h>
#include <log/log.h>
#include <private/android_filesystem_config.h>

#include "LogBufferElement.h"
Loading