diff options
| author | 2013-10-09 22:26:07 +0000 | |
|---|---|---|
| committer | 2013-10-09 22:26:22 +0000 | |
| commit | 262d3e27ec512c4acb86321fc10d2f1cd11120a1 (patch) | |
| tree | 048fc0fb50ede5b6447b8bdafb1892209bb84e1d /compiler/driver/compiler_driver.cc | |
| parent | e861ebd5d9490cc86200f3859f3d36fadad4588c (diff) | |
| parent | e732ef1c0192acd71925bd0ff1ab09640d45531d (diff) | |
Merge "Make compiler stat dumping easier to use." into dalvik-dev
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
| -rw-r--r-- | compiler/driver/compiler_driver.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc index 056be1fb04..7c4a6ce785 100644 --- a/compiler/driver/compiler_driver.cc +++ b/compiler/driver/compiler_driver.cc @@ -64,7 +64,7 @@ static void DumpStat(size_t x, size_t y, const char* str) { if (x == 0 && y == 0) { return; } - VLOG(compiler) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases"; + LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases"; } class AOTCompilationStats { |