diff options
| author | 2017-04-11 13:50:23 -0700 | |
|---|---|---|
| committer | 2017-04-11 13:50:23 -0700 | |
| commit | 9e6dee2569ba3ec393b91ee4afe0f63a4daecfa9 (patch) | |
| tree | a4349d6188ed7ad2a4c35bb1cc3be7a50c74df68 | |
| parent | bec07a05dd1aa564895f0d9c58c8277c576dc9bb (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.cc | 2 |
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 { |