summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael W <baddaemon87@gmail.com>2020-04-28 16:05:59 +0200
committerMichael W <baddaemon87@gmail.com>2021-04-10 16:31:00 +0200
commit178741f047bbcf0226000234c69c78f4ad241cf5 (patch)
treebd445fc26fd067d23e4e316f1a46063772a4c5a4
parent7a9f0c34bafbe78b2d672bebd48c2988e74fb159 (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.java2
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);