diff options
author | Joe Onorato <joeo@android.com> | 2009-07-29 16:43:06 -0700 |
---|---|---|
committer | Joe Onorato <joeo@android.com> | 2009-07-29 16:43:06 -0700 |
commit | 2d9c9e3f6780b70fc98cfa0102824308e8ed28e9 (patch) | |
tree | 336b99bb7a9ea63f30a90f18cab15613eccb2325 /services | |
parent | e712ee3fe1b9ec950dbe5d77993751c2b7b1011c (diff) | |
download | frameworks_base-2d9c9e3f6780b70fc98cfa0102824308e8ed28e9.zip frameworks_base-2d9c9e3f6780b70fc98cfa0102824308e8ed28e9.tar.gz frameworks_base-2d9c9e3f6780b70fc98cfa0102824308e8ed28e9.tar.bz2 |
Less log spew.
Diffstat (limited to 'services')
-rw-r--r-- | services/java/com/android/server/WallpaperService.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/services/java/com/android/server/WallpaperService.java b/services/java/com/android/server/WallpaperService.java index c3479a6..67b60a6 100644 --- a/services/java/com/android/server/WallpaperService.java +++ b/services/java/com/android/server/WallpaperService.java @@ -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) { |