Redundant log messages removed

This commit is contained in:
Sergey Eremin
2017-11-26 04:23:17 +03:00
parent 3523528b92
commit 5a9f656a76

View File

@@ -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);
}
}