From 3ff0baf4ed8eaba1b21979335ff1b9d8b2fede70 Mon Sep 17 00:00:00 2001 From: Vasu Nori Date: Wed, 2 Mar 2011 13:37:58 -0800 Subject: remove log spew from downloadmanager Change-Id: Iad8cfe0da389a70ff679cf6d3378f50e945d03a6 --- src/com/android/providers/downloads/DownloadService.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/com/android/providers/downloads/DownloadService.java') diff --git a/src/com/android/providers/downloads/DownloadService.java b/src/com/android/providers/downloads/DownloadService.java index 83001fd1..d4e50f23 100644 --- a/src/com/android/providers/downloads/DownloadService.java +++ b/src/com/android/providers/downloads/DownloadService.java @@ -443,8 +443,10 @@ public class DownloadService extends Service { int oldStatus = info.mStatus; reader.updateFromDatabase(info); - Log.v(Constants.TAG, "processing updated download " + info.mId + - ", status: " + info.mStatus); + if (Constants.LOGVV) { + Log.v(Constants.TAG, "processing updated download " + info.mId + + ", status: " + info.mStatus); + } boolean lostVisibility = oldVisibility == Downloads.Impl.VISIBILITY_VISIBLE_NOTIFY_COMPLETED -- cgit v1.2.3