Merge "Remove unneeded wtf logging"

This commit is contained in:
TreeHugger Robot
2019-09-11 01:14:58 +00:00
committed by Android (Google) Code Review

View File

@@ -277,9 +277,6 @@ public class ArtManagerService extends android.content.pm.dex.IArtManager.Stub {
try {
fd = ParcelFileDescriptor.open(snapshotProfile, ParcelFileDescriptor.MODE_READ_ONLY);
if (fd == null || !fd.getFileDescriptor().valid()) {
Slog.wtf(TAG,
"ParcelFileDescriptor.open returned an invalid descriptor for "
+ packageName + ":" + snapshotProfile + ". isNull=" + (fd == null));
postError(callback, packageName, ArtManager.SNAPSHOT_FAILED_INTERNAL_ERROR);
} else {
postSuccess(packageName, fd, callback);