am 2fbedf5d: am 4328cd88: am c648bae1: (DO NOT MERGE) Remove some logs which spam encrypted boot
* commit '2fbedf5d4ead7689d81003cd59fda01a5eadd1fd': (DO NOT MERGE) Remove some logs which spam encrypted bootmain
commit
8365f38ad6
|
@ -54,15 +54,13 @@ public class DownloadManagerWrapper {
|
||||||
if (null != mDownloadManager) {
|
if (null != mDownloadManager) {
|
||||||
mDownloadManager.remove(ids);
|
mDownloadManager.remove(ids);
|
||||||
}
|
}
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
// This is expected to happen on boot when the device is encrypted.
|
||||||
} catch (SQLiteException e) {
|
} catch (SQLiteException e) {
|
||||||
// We couldn't remove the file from DownloadManager. Apparently, the database can't
|
// We couldn't remove the file from DownloadManager. Apparently, the database can't
|
||||||
// be opened. It may be a problem with file system corruption. In any case, there is
|
// be opened. It may be a problem with file system corruption. In any case, there is
|
||||||
// not much we can do apart from avoiding crashing.
|
// not much we can do apart from avoiding crashing.
|
||||||
Log.e(TAG, "Can't remove files with ID " + ids + " from download manager", e);
|
Log.e(TAG, "Can't remove files with ID " + ids + " from download manager", e);
|
||||||
} catch (IllegalArgumentException e) {
|
|
||||||
// Not sure how this can happen, but it could be another case where the provider
|
|
||||||
// is disabled. Or it could be a bug in older versions of the framework.
|
|
||||||
Log.e(TAG, "Can't find the content URL for DownloadManager?", e);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,10 +69,10 @@ public class DownloadManagerWrapper {
|
||||||
if (null != mDownloadManager) {
|
if (null != mDownloadManager) {
|
||||||
return mDownloadManager.openDownloadedFile(fileId);
|
return mDownloadManager.openDownloadedFile(fileId);
|
||||||
}
|
}
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
// This is expected to happen on boot when the device is encrypted.
|
||||||
} catch (SQLiteException e) {
|
} catch (SQLiteException e) {
|
||||||
Log.e(TAG, "Can't open downloaded file with ID " + fileId, e);
|
Log.e(TAG, "Can't open downloaded file with ID " + fileId, e);
|
||||||
} catch (IllegalArgumentException e) {
|
|
||||||
Log.e(TAG, "Can't find the content URL for DownloadManager?", e);
|
|
||||||
}
|
}
|
||||||
// We come here if mDownloadManager is null or if an exception was thrown.
|
// We come here if mDownloadManager is null or if an exception was thrown.
|
||||||
throw new FileNotFoundException();
|
throw new FileNotFoundException();
|
||||||
|
@ -85,10 +83,10 @@ public class DownloadManagerWrapper {
|
||||||
if (null != mDownloadManager) {
|
if (null != mDownloadManager) {
|
||||||
return mDownloadManager.query(query);
|
return mDownloadManager.query(query);
|
||||||
}
|
}
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
// This is expected to happen on boot when the device is encrypted.
|
||||||
} catch (SQLiteException e) {
|
} catch (SQLiteException e) {
|
||||||
Log.e(TAG, "Can't query the download manager", e);
|
Log.e(TAG, "Can't query the download manager", e);
|
||||||
} catch (IllegalArgumentException e) {
|
|
||||||
Log.e(TAG, "Can't find the content URL for DownloadManager?", e);
|
|
||||||
}
|
}
|
||||||
// We come here if mDownloadManager is null or if an exception was thrown.
|
// We come here if mDownloadManager is null or if an exception was thrown.
|
||||||
return null;
|
return null;
|
||||||
|
@ -99,10 +97,10 @@ public class DownloadManagerWrapper {
|
||||||
if (null != mDownloadManager) {
|
if (null != mDownloadManager) {
|
||||||
return mDownloadManager.enqueue(request);
|
return mDownloadManager.enqueue(request);
|
||||||
}
|
}
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
// This is expected to happen on boot when the device is encrypted.
|
||||||
} catch (SQLiteException e) {
|
} catch (SQLiteException e) {
|
||||||
Log.e(TAG, "Can't enqueue a request with the download manager", e);
|
Log.e(TAG, "Can't enqueue a request with the download manager", e);
|
||||||
} catch (IllegalArgumentException e) {
|
|
||||||
Log.e(TAG, "Can't find the content URL for DownloadManager?", e);
|
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue