diff --git a/src/com/android/email/service/AttachmentDownloadService.java b/src/com/android/email/service/AttachmentDownloadService.java index 2aeccea3c..87b9c30b0 100644 --- a/src/com/android/email/service/AttachmentDownloadService.java +++ b/src/com/android/email/service/AttachmentDownloadService.java @@ -713,9 +713,9 @@ public class AttachmentDownloadService extends Service implements Runnable { default: code = Integer.toString(statusCode); break; } if (statusCode != EmailServiceStatus.IN_PROGRESS) { - LogUtils.d(TAG, ">> Attachment " + attachmentId + ": " + code); + LogUtils.d(TAG, ">> Attachment status " + attachmentId + ": " + code); } else if (progress >= (req.lastProgress + 10)) { - LogUtils.d(TAG, ">> Attachment " + attachmentId + ": " + progress + "%"); + LogUtils.d(TAG, ">> Attachment progress %d: %d%%", attachmentId, progress); } } req.lastStatusCode = statusCode;