summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2017-04-11 13:50:23 -0700
committer Andreas Gampe <agampe@google.com> 2017-04-11 13:50:23 -0700
commit9e6dee2569ba3ec393b91ee4afe0f63a4daecfa9 (patch)
treea4349d6188ed7ad2a4c35bb1cc3be7a50c74df68
parentbec07a05dd1aa564895f0d9c58c8277c576dc9bb (diff)
ART: Move trampoline logging to -verbose:dex
Move invoke logging to VLOG(dex). Bug: 37158297 Test: m test-art-host Change-Id: Ib29b3920e8f227395b99a9ed65de5ca10c737cc0
-rw-r--r--runtime/entrypoints/quick/quick_trampoline_entrypoints.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc b/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc
index 25073a8b79..354ae205e8 100644
--- a/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc
+++ b/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc
@@ -1075,7 +1075,7 @@ extern "C" const void* artQuickResolutionTrampoline(
<< called_method.dex_file->PrettyMethod(called_method.dex_method_index);
}
} else {
- VLOG(oat) << "Accessed dex file for invoke " << invoke_type << " "
+ VLOG(dex) << "Accessed dex file for invoke " << invoke_type << " "
<< called_method.dex_method_index;
}
} else {