diff options
| author | 2016-01-22 16:26:50 -0800 | |
|---|---|---|
| committer | 2016-01-22 16:26:50 -0800 | |
| commit | 3c448933bea6af7362fb8eb48c24292bb5fba2ef (patch) | |
| tree | ac6809e2ad528612a09fcde6676fc90bf8bca5ad | |
| parent | f8df1f256f402388ac070d6313472b4ec20cf76b (diff) | |
Disable the CC collector verbose log.
To reduce the amount of buildbot libcore test logs.
Bug: 12687968
Change-Id: Idadca6622c745ef12629ccb26dcbdc9ebc379a00
| -rw-r--r-- | runtime/gc/collector/concurrent_copying.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/collector/concurrent_copying.h b/runtime/gc/collector/concurrent_copying.h index 5d21c599e4..76315fe7cc 100644 --- a/runtime/gc/collector/concurrent_copying.h +++ b/runtime/gc/collector/concurrent_copying.h @@ -57,7 +57,7 @@ class ConcurrentCopying : public GarbageCollector { // Enable the from-space bytes/objects check. static constexpr bool kEnableFromSpaceAccountingCheck = true; // Enable verbose mode. - static constexpr bool kVerboseMode = true; + static constexpr bool kVerboseMode = false; ConcurrentCopying(Heap* heap, const std::string& name_prefix = ""); ~ConcurrentCopying(); |