Log DexManager realpath errors only in debug mode. am: 271bacbf5c am: 42c7fc7f27

am: 46b323869f

Change-Id: I55e04d69bba9d14f0527c648d29f8ec8b7bbddfb
This commit is contained in:
Calin Juravle
2017-01-11 02:54:25 +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);
}
}
}