Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d1399070 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 9052

* changes:
  Less log spew.
parents ce410500 2d9c9e3f
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -268,15 +268,15 @@ class WallpaperService extends IWallpaperService.Stub {
            } while (type != XmlPullParser.END_DOCUMENT);
            success = true;
        } catch (NullPointerException e) {
            Log.w(TAG, "failed parsing " + file, e);
            Log.w(TAG, "failed parsing " + file + " " + e);
        } catch (NumberFormatException e) {
            Log.w(TAG, "failed parsing " + file, e);
            Log.w(TAG, "failed parsing " + file + " " + e);
        } catch (XmlPullParserException e) {
            Log.w(TAG, "failed parsing " + file, e);
            Log.w(TAG, "failed parsing " + file + " " + e);
        } catch (IOException e) {
            Log.w(TAG, "failed parsing " + file, e);
            Log.w(TAG, "failed parsing " + file + " " + e);
        } catch (IndexOutOfBoundsException e) {
            Log.w(TAG, "failed parsing " + file, e);
            Log.w(TAG, "failed parsing " + file + " " + e);
        }
        try {
            if (stream != null) {