Fix log spam in PersistentUnitCache.cleanup
Change-Id: I8ebebfc4e5b35f441e959ab648e9ab48f8234357
diff --git a/dev/core/src/com/google/gwt/dev/javac/PersistentUnitCache.java b/dev/core/src/com/google/gwt/dev/javac/PersistentUnitCache.java
index bfd30ed..8e09d02 100644
--- a/dev/core/src/com/google/gwt/dev/javac/PersistentUnitCache.java
+++ b/dev/core/src/com/google/gwt/dev/javac/PersistentUnitCache.java
@@ -200,7 +200,7 @@
*/
@Override
public void cleanup(TreeLogger logger) {
- logger.log(Type.INFO, "Cleanup called");
+ logger.log(Type.TRACE, "Cleanup called");
awaitUnitCacheMapLoad();
if (backgroundService.isShutdown()) {
@@ -234,7 +234,7 @@
}
}
- logger.log(Type.INFO, "Cleaning up persistent unit cache files");
+ logger.log(Type.TRACE, "Cleaning up persistent unit cache files");
/*
* Resend all units read in from the in-memory cache to the background
* thread. They will be re-written out and the old cache files removed.