diff options
author | 2018-03-30 18:32:16 +0000 | |
---|---|---|
committer | 2018-03-30 18:32:16 +0000 | |
commit | 846bcc010dc76b3bae8d79d62cf2f83cdaa28e0f (patch) | |
tree | 442ea83201f9a3bd47e88ef44f1092c318c6fe0b | |
parent | 75b47b47c4c54adccbb723cfbf48e32953887713 (diff) | |
parent | e2ac8d7c310acfcb4b8ed5018472910e991bdae3 (diff) |
Merge "ART: Remove logging restriction"
-rw-r--r-- | compiler/optimizing/optimizing_compiler_stats.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/compiler/optimizing/optimizing_compiler_stats.h b/compiler/optimizing/optimizing_compiler_stats.h index e0a9cfb934..9a26f2f6c4 100644 --- a/compiler/optimizing/optimizing_compiler_stats.h +++ b/compiler/optimizing/optimizing_compiler_stats.h @@ -125,11 +125,6 @@ class OptimizingCompilerStats { } void Log() const { - if (!kIsDebugBuild && !VLOG_IS_ON(compiler)) { - // Log only in debug builds or if the compiler is verbose. - return; - } - uint32_t compiled_intrinsics = GetStat(MethodCompilationStat::kCompiledIntrinsic); uint32_t compiled_native_stubs = GetStat(MethodCompilationStat::kCompiledNativeStub); uint32_t bytecode_attempts = |