Log DexManager realpath errors only in debug mode.

am: 271bacbf5c

Change-Id: I94aca4959284912e6d5008f56617254be2fc3ea7
This commit is contained in:
Calin Juravle
2017-01-11 02:25:05 +00:00
committed by android-build-merger

View File

@@ -271,7 +271,11 @@ public class DexManager {
try {
dataDirs.add(PackageManagerServiceUtils.realpath(new File(ai.dataDir)));
} catch (IOException e) {
Slog.w(TAG, "Error to get realpath of " + ai.dataDir, e);
if (DEBUG) {
// Verify why we're getting spam at boot for some devices.
// b/33807524
Slog.w(TAG, "Error to get realpath of " + ai.dataDir, e);
}
}
}