mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-03 21:55:13 +00:00
Reduced logging
This commit is contained in:
parent
19e934db16
commit
b0f2fb162f
1 changed files with 4 additions and 1 deletions
|
@ -477,8 +477,11 @@ public class Helper {
|
|||
PackageManager pm = context.getPackageManager();
|
||||
pm.getPackageInfo("com.android.vending", 0);
|
||||
hasPlayStore = true;
|
||||
} catch (PackageManager.NameNotFoundException ex) {
|
||||
Log.i(ex);
|
||||
hasPlayStore = false;
|
||||
} catch (Throwable ex) {
|
||||
Log.w(ex);
|
||||
Log.e(ex);
|
||||
hasPlayStore = false;
|
||||
}
|
||||
return hasPlayStore;
|
||||
|
|
Loading…
Reference in a new issue