mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 02:07:12 +00:00
Log optimizing
This commit is contained in:
parent
4775dce9ba
commit
7f2e2256e5
1 changed files with 2 additions and 0 deletions
|
@ -293,6 +293,7 @@ public class Log {
|
|||
|
||||
final String installer = context.getPackageManager().getInstallerPackageName(BuildConfig.APPLICATION_ID);
|
||||
final boolean fingerprint = Helper.hasValidFingerprint(context);
|
||||
final boolean ignoringOptimizations = Helper.isIgnoringOptimizations(context);
|
||||
|
||||
Bugsnag.beforeNotify(new BeforeNotify() {
|
||||
@Override
|
||||
|
@ -301,6 +302,7 @@ public class Log {
|
|||
error.addToTab("extra", "fingerprint", fingerprint);
|
||||
error.addToTab("extra", "thread", Thread.currentThread().getName());
|
||||
error.addToTab("extra", "free", Log.getFreeMemMb());
|
||||
error.addToTab("extra", "optimizing", !ignoringOptimizations);
|
||||
|
||||
String theme = prefs.getString("theme", "light");
|
||||
error.addToTab("extra", "theme", theme);
|
||||
|
|
Loading…
Reference in a new issue