summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2019-05-31 14:29:54 -0700
committer Treehugger Robot <treehugger-gerrit@google.com> 2019-06-04 04:18:29 +0000
commitdddb6dea9455950e0d79f7d697a00190e7387e66 (patch)
tree03b7f46ef41b447ea877a311d4e72833fa1e9ddb
parent54a6d4c123d968e272262892118e629f13d17000 (diff)
ART: Remove superfluous logging
Remove unnecessary logging used for debugging. Test: m test-art-host-gtest Change-Id: I271c9c10eea728d9e534a96d981cac095c6e2e8e
-rw-r--r--libartbase/base/mem_map_test.cc1
-rw-r--r--runtime/common_runtime_test.cc1
2 files changed, 0 insertions, 2 deletions
diff --git a/libartbase/base/mem_map_test.cc b/libartbase/base/mem_map_test.cc
index bf39fd1562..938cff7e97 100644
--- a/libartbase/base/mem_map_test.cc
+++ b/libartbase/base/mem_map_test.cc
@@ -902,6 +902,5 @@ class DumpMapsOnFailListener : public testing::EmptyTestEventListener {
extern "C"
__attribute__((visibility("default"))) __attribute__((used))
void ArtTestGlobalInit() {
- LOG(ERROR) << "Installing listener";
testing::UnitTest::GetInstance()->listeners().Append(new DumpMapsOnFailListener());
}
diff --git a/runtime/common_runtime_test.cc b/runtime/common_runtime_test.cc
index f4cc1617a5..46240d4180 100644
--- a/runtime/common_runtime_test.cc
+++ b/runtime/common_runtime_test.cc
@@ -463,7 +463,6 @@ void CheckJniAbortCatcher::Hook(void* data, const std::string& reason) {
extern "C"
__attribute__((visibility("default"))) __attribute__((weak))
void ArtTestGlobalInit() {
- LOG(ERROR) << "ArtTestGlobalInit in common_runtime_test";
}
int main(int argc, char **argv) {