Merge "Print the full exception upon widgets inflation error" into sc-dev

This commit is contained in:
Steven Ng
2021-05-07 09:08:18 +00:00
committed by Android (Google) Code Review

View File

@@ -588,7 +588,7 @@ public class AppWidgetHostView extends FrameLayout {
return ;
}
if (exception != null) {
Log.w(TAG, "Error inflating RemoteViews : " + exception.toString());
Log.w(TAG, "Error inflating RemoteViews", exception);
}
content = getErrorView();
mViewMode = VIEW_MODE_ERROR;
@@ -786,7 +786,7 @@ public class AppWidgetHostView extends FrameLayout {
}
if (exception != null) {
Log.w(TAG, "Error inflating AppWidget " + mInfo + ": " + exception.toString());
Log.w(TAG, "Error inflating AppWidget " + mInfo, exception);
}
if (defaultView == null) {