diff options
author | Michael W <baddaemon87@gmail.com> | 2020-04-28 16:05:59 +0200 |
---|---|---|
committer | Michael W <baddaemon87@gmail.com> | 2021-04-10 16:31:00 +0200 |
commit | 178741f047bbcf0226000234c69c78f4ad241cf5 (patch) | |
tree | bd445fc26fd067d23e4e316f1a46063772a4c5a4 | |
parent | 7a9f0c34bafbe78b2d672bebd48c2988e74fb159 (diff) |
MediaProvider: Less spam
* We don't need the full stacktrace just because there is no album art
for our music
Change-Id: I9dfd1216f5ce5747a894f6dde0241a122c9bd20d
-rw-r--r-- | src/com/android/providers/media/MediaProvider.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/providers/media/MediaProvider.java b/src/com/android/providers/media/MediaProvider.java index f3d34bea..251e18d9 100644 --- a/src/com/android/providers/media/MediaProvider.java +++ b/src/com/android/providers/media/MediaProvider.java @@ -5819,7 +5819,7 @@ public class MediaProvider extends ContentProvider { throw new FileNotFoundException(); } } catch (IOException e) { - Log.w(TAG, e); + if (LOGV) Log.w(TAG, e); throw new FileNotFoundException(e.getMessage()); } finally { restoreLocalCallingIdentity(token); |