summaryrefslogtreecommitdiffstats
path: root/bootstat/bootstat.cpp
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
commitff2dcd9af994a23ed483939a416b48bdc10eefd5 (patch)
tree6e5a0dfe4e39c407eea7e39840eef5d56b720de4 /bootstat/bootstat.cpp
parent66ce3e08c5632a20ea66bde6dd76397041edf034 (diff)
downloadsystem_core-ff2dcd9af994a23ed483939a416b48bdc10eefd5.tar.gz
system_core-ff2dcd9af994a23ed483939a416b48bdc10eefd5.tar.bz2
system_core-ff2dcd9af994a23ed483939a416b48bdc10eefd5.zip
system/core 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. Adjust header order to comply with Android Coding standards. Test: Compile Bug: 26552300 Bug: 31289077 Change-Id: I33a8fb4e754d2dc4754d335660c450e0a67190fc
Diffstat (limited to 'bootstat/bootstat.cpp')
-rw-r--r--bootstat/bootstat.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/bootstat/bootstat.cpp b/bootstat/bootstat.cpp
index 71a5a3993..0ab4c98d4 100644
--- a/bootstat/bootstat.cpp
+++ b/bootstat/bootstat.cpp
@@ -20,6 +20,7 @@
#include <getopt.h>
#include <unistd.h>
+
#include <cmath>
#include <cstddef>
#include <cstdio>
@@ -27,12 +28,14 @@
#include <map>
#include <memory>
#include <string>
+
+#include <android/log.h>
#include <android-base/logging.h>
#include <android-base/parseint.h>
#include <cutils/properties.h>
-#include <log/log.h>
+
#include "boot_event_record_store.h"
-#include "event_log_list_builder.h"
+#include "event_log_list_builder.h" /* ToDo: switch to liblog implementation */
#include "histogram_logger.h"
#include "uptime_parser.h"