From 5a9f656a76db72a8470dbd4c4bd5c6ae2bb33f12 Mon Sep 17 00:00:00 2001 From: Sergey Eremin Date: Sun, 26 Nov 2017 04:23:17 +0300 Subject: [PATCH] Redundant log messages removed --- .../com/github/yeriomin/yalpstore/DownloadManagerFactory.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/src/main/java/com/github/yeriomin/yalpstore/DownloadManagerFactory.java b/app/src/main/java/com/github/yeriomin/yalpstore/DownloadManagerFactory.java index 6173f316d..9b2db0075 100644 --- a/app/src/main/java/com/github/yeriomin/yalpstore/DownloadManagerFactory.java +++ b/app/src/main/java/com/github/yeriomin/yalpstore/DownloadManagerFactory.java @@ -14,10 +14,8 @@ public class DownloadManagerFactory { || !nativeDownloadManagerEnabled(context) || nougatVpn(context) ) { - Log.i(DownloadManagerFactory.class.getSimpleName(), "DownloadManager unavailable - using a fallback"); return new DownloadManagerFake(context); } else { - Log.i(DownloadManagerFactory.class.getSimpleName(), "DownloadManager is found and is going to be used"); return new DownloadManagerAdapter(context); } }