mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 07:01:05 +00:00
Added logging
This commit is contained in:
parent
29fb962805
commit
702317acd7
1 changed files with 8 additions and 0 deletions
|
@ -191,6 +191,14 @@ abstract class ActivityBase extends AppCompatActivity implements SharedPreferenc
|
|||
super.onCreate(savedInstanceState);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onNewIntent(Intent intent) {
|
||||
if (intent != null)
|
||||
EntityLog.log(this, "New " + intent +
|
||||
" extras=" + TextUtils.join(", ", Log.getExtras(intent.getExtras())));
|
||||
super.onNewIntent(intent);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onSaveInstanceState(Bundle outState) {
|
||||
int before = Helper.getSize(outState);
|
||||
|
|
Loading…
Reference in a new issue