diff options
| author | 2013-10-09 15:22:24 -0700 | |
|---|---|---|
| committer | 2013-10-09 15:22:24 -0700 | |
| commit | e732ef1c0192acd71925bd0ff1ab09640d45531d (patch) | |
| tree | 7b5f261e88958db19c994329c945b632ee0596fd /compiler/driver/compiler_driver.cc | |
| parent | d50f8c8e4456263e169c9998d3a1c3a6c5c51435 (diff) | |
Make compiler stat dumping easier to use.
Previous needed -verbose:compiler + a debug build. Now specify --dump-stats to
dex2oat.
Change-Id: Ifde379e7cd06bbb0fe20149ce89c3b3789221eac
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 { |