diff options
| author | 2015-04-24 16:22:18 -0700 | |
|---|---|---|
| committer | 2015-04-24 16:22:18 -0700 | |
| commit | f99bcd2fba4c5a485ced108d63c4a49835d66e5c (patch) | |
| tree | 0eb0cb70eaec7eae4c63da10ca49e6d19944f7e9 | |
| parent | 76f1413492c228bfa710e1eaa4c60370eaffbb8a (diff) | |
ART: Do not log non-swap usage
Reduce logcat noise.
Bug: 20501758
Change-Id: I5cbc28614d4be9e7fd120b7ccb97ca489e341f54
| -rw-r--r-- | dex2oat/dex2oat.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc index 2a3a346a4c..b764095fc5 100644 --- a/dex2oat/dex2oat.cc +++ b/dex2oat/dex2oat.cc @@ -1217,9 +1217,9 @@ class Dex2Oat FINAL { if (!UseSwap(image_, dex_files_)) { close(swap_fd_); swap_fd_ = -1; - LOG(INFO) << "Decided to run without swap."; + VLOG(compiler) << "Decided to run without swap."; } else { - LOG(INFO) << "Accepted running with swap."; + LOG(INFO) << "Large app, accepted running with swap."; } } // Note that dex2oat won't close the swap_fd_. The compiler driver's swap space will do that. |