Merge "Only log when system UID finds missing data paths." into nyc-dev

This commit is contained in:
Jeff Sharkey
2016-04-27 20:34:17 +00:00
committed by Android (Google) Code Review

View File

@@ -1958,7 +1958,7 @@ class ContextImpl extends Context {
}
if (res != null) {
if (!res.exists()) {
if (!res.exists() && android.os.Process.myUid() == android.os.Process.SYSTEM_UID) {
Log.wtf(TAG, "Data directory doesn't exist for package " + getPackageName(),
new Throwable());
}