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

Commit 2d9c9e3f authored by Joe Onorato's avatar Joe Onorato
Browse files

Less log spew.

parent e712ee3f
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) {